summaryrefslogtreecommitdiff
path: root/files/functions/dirname.rb
diff options
context:
space:
mode:
Diffstat (limited to 'files/functions/dirname.rb')
-rwxr-xr-xfiles/functions/dirname.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/files/functions/dirname.rb b/files/functions/dirname.rb
deleted file mode 100755
index 3f784ac..0000000
--- a/files/functions/dirname.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-# get the directory corresponding to this filename
-module Puppet::Parser::Functions
- newfunction(:dirname, :type => :rvalue) do |args|
- File.dirname(args[0])
- end
-end
-