public
Description: Puppet configuration for Tryphon servers
Homepage:
Clone URL: git://github.com/albanpeignier/tryphon-puppet.git
albanpeignier (author)
Sat May 16 14:08:50 -0700 2009
commit  aa2648aee5798f2eaae0eb0276f6628cbe1d102d
tree    15ebb03eec7e9881f40ee7cd360e74c63a509653
parent  a990818b29924268255fd66ceab3b0594286d4a8
tryphon-puppet / script / destroy
100755 15 lines (12 sloc) 0.361 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env ruby
APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
 
begin
  require 'rubigen'
rescue LoadError
  require 'rubygems'
  require 'rubigen'
end
require 'rubigen/scripts/destroy'
 
ARGV.shift if ['--help', '-h'].include?(ARGV[0])
RubiGen::Base.use_component_sources! [:puppet, :test_unit]
RubiGen::Scripts::Destroy.new.run(ARGV)