summaryrefslogtreecommitdiff
path: root/lib/facter/root_home.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/facter/root_home.rb')
-rw-r--r--lib/facter/root_home.rb32
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/facter/root_home.rb b/lib/facter/root_home.rb
deleted file mode 100644
index b4f87ff2..00000000
--- a/lib/facter/root_home.rb
+++ /dev/null
@@ -1,32 +0,0 @@
-# A facter fact to determine the root home directory.
-# This varies on PE supported platforms and may be
-# reconfigured by the end user.
-
-module Facter::Util::RootHome
- class << self
- def get_root_home
- root_ent = Facter::Util::Resolution.exec("getent passwd root")
- # The home directory is the sixth element in the passwd entry
- # If the platform doesn't have getent, root_ent will be nil and we should
- # return it straight away.
- root_ent && root_ent.split(":")[5]
- end
- end
-end
-
-Facter.add(:root_home) do
- setcode { Facter::Util::RootHome.get_root_home }
-end
-
-Facter.add(:root_home) do
- confine :kernel => :darwin
- setcode do
- str = Facter::Util::Resolution.exec("dscacheutil -q user -a name root")
- hash = {}
- str.split("\n").each do |pair|
- key,value = pair.split(/:/)
- hash[key] = value
- end
- hash['dir'].strip
- end
-end