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

27 lines
450 B
Ruby
Raw Normal View History

Puppet::Type.newtype(:make_and_install) do
@doc = "Make and install a program"
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
2011-12-08 13:58:22 +00:00
newparam(:path) do
desc "Binary path to add"
end
end