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.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/facter/root_home.rb b/lib/facter/root_home.rb
index ee3ffa8..87c7657 100644
--- a/lib/facter/root_home.rb
+++ b/lib/facter/root_home.rb
@@ -35,7 +35,7 @@ Facter.add(:root_home) do
confine :kernel => :aix
root_home = nil
setcode do
- str = Facter::Util::Resolution.exec("lsuser -C -a home root")
+ str = Facter::Util::Resolution.exec("lsuser -c -a home root")
str && str.split("\n").each do |line|
next if line =~ /^#/
root_home = line.split(/:/)[1]