diff options
author | Nan Liu <nan@puppetlabs.com> | 2012-05-01 16:16:10 -0700 |
---|---|---|
committer | Nan Liu <nan@puppetlabs.com> | 2012-05-01 16:16:10 -0700 |
commit | c83ffff9493443845c1545240f75d8136c0ecdff (patch) | |
tree | 2a4f1450709f3559bf2b6cad95c7efe04011161b /manifests | |
parent | df6c470fd39e6e4e92968d414ae9021b4ec67205 (diff) | |
download | puppet-tftp-c83ffff9493443845c1545240f75d8136c0ecdff.tar.gz puppet-tftp-c83ffff9493443845c1545240f75d8136c0ecdff.tar.bz2 |
Add support files for initial release.
* Update documentation.
* Fix puppet-lint 80 char issues.
* Add spec tests.
* Add modulefile, changelog, rakefile, and license.
Diffstat (limited to 'manifests')
-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 |