lib/serverspec/setup.rb in serverspec-0.3.2 vs lib/serverspec/setup.rb in serverspec-0.4.0
- old
+ new
@@ -6,18 +6,17 @@
prompt = <<-EOF
Select a backend type:
1) SSH
2) Exec (local)
- 3) Puppet providers (local)
Select number:
EOF
print prompt.chop
num = gets.to_i - 1
puts
- @backend_type = [ 'Ssh', 'Exec', 'Puppet' ][num]
+ @backend_type = [ 'Ssh', 'Exec' ][num]
if @backend_type == 'Ssh'
print "Input target host name: "
@hostname = gets.chomp
else
@hostname = 'localhost'