Sha256: a4798393ca4170e81c7daea2cf81aa8048a889ea3e09aaeaabab3ad94c42ffad
Contents?: true
Size: 584 Bytes
Versions: 9
Compression:
Stored size: 584 Bytes
Contents
server :vagrant, { :host => "localhost", :user => 'vagrant', :ssh => { :port => 2222, :password => 'vagrant' }, :installer => :apt } repo :test, { :url => "https://github.com/joshglendenning/profile.git" } task :foo do sh "echo 'foo'" end task :foobar => :foo do sh "echo 'bar'" end task :install => :foobar do install 'zsh' sh "echo 'test'" sh "echo 'test2'" sh "echo 'test3'" repo_clone :test, "dest" end task :broken => :foo do sh "notacommand" end task :sudo do sh "sudo echo 'this is a sudo echo'" end task :git_clone do repo_clone :test, "~/test" end
Version data entries
9 entries across 9 versions & 1 rubygems