diff options
author | Bryan Jen <bryan.jen@gmail.com> | 2015-11-20 09:07:56 -0700 |
---|---|---|
committer | Bryan Jen <bryan.jen@gmail.com> | 2015-11-20 09:07:56 -0700 |
commit | 13e307b2c66b9a37fb29bc9c5553dcb6b9b7ea39 (patch) | |
tree | 5ca8a51ff9dfbe15bcf42e11d19e8767b5f37411 /lib/facter | |
parent | 61333cfc48026af204483d681bd8b10cb44d6fc6 (diff) | |
parent | 13e5d467c97deb530f99e4a82c73b1aff97c9787 (diff) | |
download | puppet-stdlib-13e307b2c66b9a37fb29bc9c5553dcb6b9b7ea39.tar.gz puppet-stdlib-13e307b2c66b9a37fb29bc9c5553dcb6b9b7ea39.tar.bz2 |
Merge pull request #547 from reidmv/fm_3773
(FM-3773) Fix root_home fact on AIX 5.x
Diffstat (limited to 'lib/facter')
-rw-r--r-- | lib/facter/root_home.rb | 2 |
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] |