summaryrefslogtreecommitdiffstats
path: root/lib/puppet
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2007-12-27 21:35:42 -0600
committerLuke Kanies <luke@madstop.com>2007-12-27 21:35:42 -0600
commit4e8bc40ad7a9c128e778dbafda6dadbade215c94 (patch)
tree5333dd69d051cb4b828d63a7006182917825e6a6 /lib/puppet
parentc4ed43c2a1ad9ab865e3da6b8b7fad28222c3451 (diff)
downloadpuppet-4e8bc40ad7a9c128e778dbafda6dadbade215c94.tar.gz
puppet-4e8bc40ad7a9c128e778dbafda6dadbade215c94.tar.xz
puppet-4e8bc40ad7a9c128e778dbafda6dadbade215c94.zip
Fixing the inability to manage '/' directly. It was a result
of stripping extra and trailing slashes.
Diffstat (limited to 'lib/puppet')
-rw-r--r--lib/puppet/type/pfile.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/puppet/type/pfile.rb b/lib/puppet/type/pfile.rb
index f86e1e273..7d928d959 100644
--- a/lib/puppet/type/pfile.rb
+++ b/lib/puppet/type/pfile.rb
@@ -460,7 +460,9 @@ module Puppet
super
# Get rid of any duplicate slashes, and remove any trailing slashes.
- @title = @title.gsub(/\/+/, "/").sub(/\/$/, "")
+ @title = @title.gsub(/\/+/, "/")
+
+ @title.sub!(/\/$/, "") unless @title == "/"
# Clean out as many references to any file paths as possible.
# This was the source of many, many bugs.