Mercurial > repos > other > Puppet
view modules/mysql/lib/puppet/parser/functions/mysql_dirname.rb @ 153:cf3ee1fb3f10 puppet-3.6
Remove unused Apache config files
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 28 Mar 2017 20:51:06 +0100 |
parents | 58d1818c2ded |
children |
line wrap: on
line source
module Puppet::Parser::Functions newfunction(:mysql_dirname, :type => :rvalue, :doc => <<-EOS Returns the dirname of a path. EOS ) do |arguments| raise(Puppet::ParseError, "mysql_dirname(): Wrong number of arguments " + "given (#{arguments.size} for 1)") if arguments.size < 1 path = arguments[0] return File.dirname(path) end end # vim: set ts=2 sw=2 et :