summaryrefslogtreecommitdiffstats
path: root/lib/puppet/daemon.rb
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-09-05 18:33:20 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-09-05 18:33:20 +0000
commit46fbf95b16622d33bcb791f0489bee1f87fb33e5 (patch)
treeeb8393d65ba723e0998073fd963748da7c0c54dc /lib/puppet/daemon.rb
parentb303e8d3b7c31ebccabb0b3238104f5f019c5b6a (diff)
downloadpuppet-46fbf95b16622d33bcb791f0489bee1f87fb33e5.tar.gz
puppet-46fbf95b16622d33bcb791f0489bee1f87fb33e5.tar.xz
puppet-46fbf95b16622d33bcb791f0489bee1f87fb33e5.zip
Adding an "ignoretags" attribute to transaction, and setting it for downloading plugins or facts, and for creating config directories
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1562 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/daemon.rb')
-rwxr-xr-xlib/puppet/daemon.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/daemon.rb b/lib/puppet/daemon.rb
index 79241deb6..a19124545 100755
--- a/lib/puppet/daemon.rb
+++ b/lib/puppet/daemon.rb
@@ -48,8 +48,8 @@ module Puppet
def fqdn
unless defined? @fqdn and @fqdn
- hostname = Facter["hostname"].value
- domain = Facter["domain"].value
+ hostname = Facter.value("hostname")
+ domain = Facter.value("domain")
@fqdn = [hostname, domain].join(".")
end
return @fqdn