diff options
author | mh <mh@immerda.ch> | 2008-10-06 21:35:46 +0000 |
---|---|---|
committer | mh <mh@immerda.ch> | 2008-10-06 21:35:46 +0000 |
commit | 717ec7c54da8d4bd66acd6c5b70504087601529a (patch) | |
tree | d4dadc096a9317d806fd3a86a5b2fa8e3e282fd6 | |
parent | 0c85c90c1e344ae8b4d73afaf4fdf0a433af1191 (diff) | |
download | puppet-resolvconf-717ec7c54da8d4bd66acd6c5b70504087601529a.tar.gz puppet-resolvconf-717ec7c54da8d4bd66acd6c5b70504087601529a.tar.bz2 |
fixed typos
-rw-r--r-- | manifests/init.pp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index c55781a..97423f4 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -16,18 +16,18 @@ class resolvconf { case $operatingsystem { - openbsd: { info("\$reseolvconf_domain and \$reseolvconf_search not needed on openbsd") } + openbsd: { info("\$resolvconf_domain and \$resolvconf_search not needed on openbsd") } default: { - case $reseolvconf_domain { - '': { fail("you need to define \$reseolvconf_domain for ${fqdn}") } + case $resolvconf_domain { + '': { fail("you need to define \$resolvconf_domain for ${fqdn}") } } case $resolvconf_search { - '': { fail("you need to define \$reseolvconf_search for ${fqdn}") } + '': { fail("you need to define \$resolvconf_search for ${fqdn}") } } } } case $resolvconf_nameservers { - '': { fail("you need to define \$reseolvconf_nameservers for ${fqdn}") } + '': { fail("you need to define \$resolvconf_nameservers for ${fqdn}") } } file { '/etc/resolv.conf': |