puppet-standalone-mashup/shared/lib/puppet/provider/make_and_install/action.rb

31 lines
721 B
Ruby
Raw Normal View History

require 'fileutils'
Puppet::Type.type(:make_and_install).provide(:action) do
desc "Configure a program to install"
def create
2011-12-08 13:58:22 +00:00
system %{bash -c '#{path} cd #{@resource[:build_path]} ; make && make install'}
2012-01-18 17:29:05 +00:00
FileUtils.rm_rf symlink_path
FileUtils.ln_sf(@resource[:install_path], symlink_path)
end
def destroy
FileUtils.rm_rf @resource[:install_path]
FileUtils.rm_rf symlink_path
end
def exists?
File.directory?(@resource[:install_path]) && File.symlink?(symlink_path)
end
private
def symlink_path
File.join(File.dirname(@resource[:install_path]), @resource[:name])
end
2011-12-08 13:58:22 +00:00
def path
@resource[:path].empty? ? '' : "export PATH=#{@resource[:path]}:$PATH ; "
end
end