puppet-standalone-mashup/shared/lib/puppet/type/configure.rb

31 lines
534 B
Ruby
Raw Normal View History

Puppet::Type.newtype(:configure) do
@doc = "Configuring a program to install"
ensurable
newparam(:name) do
desc "The name of the program"
end
newparam(:build_path) do
desc "The location of downloaded sources"
end
newparam(:install_path) do
desc "The location to install builds"
end
newparam(:options) do
desc "Options to build the software"
end
2012-01-18 17:29:05 +00:00
newparam(:config_status) do
desc "Relative location of config.status"
end
newparam(:path) do
desc "Path for executables"
end
end