diff options
author | Nan Liu <nan.liu@gmail.com> | 2012-05-01 16:20:12 -0700 |
---|---|---|
committer | Nan Liu <nan.liu@gmail.com> | 2012-05-01 16:20:12 -0700 |
commit | 9bd4362615994e0025d220bfb34609a689720d2b (patch) | |
tree | 2a4f1450709f3559bf2b6cad95c7efe04011161b /manifests/params.pp | |
parent | df6c470fd39e6e4e92968d414ae9021b4ec67205 (diff) | |
parent | c83ffff9493443845c1545240f75d8136c0ecdff (diff) | |
download | puppet-tftp-9bd4362615994e0025d220bfb34609a689720d2b.tar.gz puppet-tftp-9bd4362615994e0025d220bfb34609a689720d2b.tar.bz2 |
Merge pull request #1 from nanliu/master
Add support files for initial module release.
Diffstat (limited to 'manifests/params.pp')
-rw-r--r-- | manifests/params.pp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manifests/params.pp b/manifests/params.pp index df43e6c..b268114 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -16,7 +16,8 @@ class tftp::params { case $::operatingsystem { 'debian': { - # hasstatus is to get around an issue where the service script appears to be broken. + # hasstatus is to get around an issue where the service script appears to + # be broken. $directory = '/srv/tftp' $hasstatus = false $provider = undef @@ -27,7 +28,7 @@ class tftp::params { $provider = 'upstart' } default: { - warning("tftp:: module not verified on operatingsystem ${::operatingsystem}.") + warning("tftp:: not verified on operatingsystem ${::operatingsystem}.") $directory = '/var/lib/tftpboot' $hasstatus = true $provider = undef |