summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 73712b30e5aaeac61bacf0d8d58e109e40dd681c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# See
# http://prefetch.net/code/domain-check
# http://www.cyberciti.biz/tips/howto-monitor-domain-expiration-renew-date.html
# http://www.cyberciti.biz/tips/domain-check-script.html
class domain_check {
  file { "/usr/local/bin/domain-check":
    ensure => present,
    owner   => "root",
    group   => "root",
    mode    => '755',
    source  => "puppet:///modules/domain_check/domain-check",
  }
}