diff options
author | Hunter Haugen <hunter@puppetlabs.com> | 2014-06-24 15:03:58 -0700 |
---|---|---|
committer | Hunter Haugen <hunter@puppetlabs.com> | 2014-06-24 15:03:58 -0700 |
commit | 0cac9fd0489180d7b6ae59ce67334dc34ddcc961 (patch) | |
tree | 180fe7a6c4930e713ed3a0bd4b43e8693e2e9f61 | |
parent | 977c6c5bf05ecbde0b8a45c4f747de99cb894255 (diff) | |
download | puppet-stdlib-0cac9fd0489180d7b6ae59ce67334dc34ddcc961.tar.gz puppet-stdlib-0cac9fd0489180d7b6ae59ce67334dc34ddcc961.tar.bz2 |
Not enough escape velocity
-rwxr-xr-x | spec/acceptance/fqdn_rotate_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/acceptance/fqdn_rotate_spec.rb b/spec/acceptance/fqdn_rotate_spec.rb index bc02eb6..d56c2b1 100755 --- a/spec/acceptance/fqdn_rotate_spec.rb +++ b/spec/acceptance/fqdn_rotate_spec.rb @@ -7,9 +7,9 @@ describe 'fqdn_rotate function', :unless => UNSUPPORTED_PLATFORMS.include?(fact( if fact('is_pe', '--puppet') == "true" if fact('osfamily') =~ /windows/i if fact('kernelmajversion').to_f < 6.0 - 'C:\\Documents and Settings\\All Users\\Application Data\\PuppetLabs\\facter\\facts.d' + 'C:/Documents and Settings/All Users/Application Data/PuppetLabs/facter/facts.d' else - 'C:\\ProgramData\\PuppetLabs\\facter\\facts.d' + 'C:/ProgramData/PuppetLabs/facter/facts.d' end else '/etc/puppetlabs/facter/facts.d' |