diff options
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/feature/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/feature/base.rb b/lib/puppet/feature/base.rb index 44a9f3fc1..a8fba34c4 100644 --- a/lib/puppet/feature/base.rb +++ b/lib/puppet/feature/base.rb @@ -39,6 +39,6 @@ Puppet.features.add(:posix) do end # We can use Win32 functions -Puppet.features.add(:win32, :libs => ["sys/admin", "win32/process"]) +Puppet.features.add(:win32, :libs => ["sys/admin", "win32/process", "win32/dir"]) raise Puppet::Error "Cannot determine basic system flavour" unless Puppet.features.posix? or Puppet.features.win32? |