We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1da9c0 commit 04ef8b8Copy full SHA for 04ef8b8
README.md
@@ -53,12 +53,14 @@ options[:keys] = ENV['TARGET_KEY']
53
options[:host_name] = ENV['TARGET_HOST']
54
options[:port] = ENV['TARGET_PORT']
55
options[:verify_host_key] = :never unless ENV['SERVERSPEC_HOST_KEY_CHECKING'] =~ (/^(true|t|yes|y|1)$/i)
56
+backend = ENV.fetch('SERVERSPEC_BACKEND', 'ssh').to_sym
57
58
+set :backend, backend
59
+set :disable_sudo, true
60
set :host, options[:host_name]
-set :ssh_options, options
-set :backend, :ssh
-set :display_sudo, true
61
+set :path, '/usr/local/bin:$PATH'
62
set :request_pty, true
63
+set :ssh_options, options
64
```
65
66
Configuration
0 commit comments