knife-setup 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +7 -6
- data/lib/chef/knife/knife-setup.rb +2 -2
- data/lib/knife-setup/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -9,23 +9,24 @@ knife setup FQDN (options)
|
|
9
9
|
-N, --node-name NAME The Chef node name for your new node
|
10
10
|
-s, --server-url URL Chef Server URL
|
11
11
|
-k, --key KEY API Client Key
|
12
|
-
--
|
12
|
+
--color Use colored output
|
13
13
|
-c, --config CONFIG The configuration file to use
|
14
14
|
--defaults Accept default values for all questions
|
15
|
-
--disable-editing Do not open EDITOR, just accept the data as is
|
16
15
|
-d, --distro DISTRO Bootstrap a distro using a template
|
17
|
-
|
18
|
-
|
16
|
+
--editor EDITOR Set the editor to use for interactive commands
|
17
|
+
-e, --environment ENVIRONMENT Set environment for node
|
19
18
|
-F, --format FORMAT Which format to use for output
|
20
19
|
-i IDENTITY_FILE, The SSH identity file used for authentication
|
21
20
|
--identity-file
|
21
|
+
--no-color Don't use colors in the output
|
22
|
+
-n, --no-editor Do not open EDITOR, just accept the data as is
|
22
23
|
--no-host-key-verify Disable host key verification
|
23
|
-
--nobootstrap
|
24
|
+
--nobootstrap Don't run bootstrap scripts
|
24
25
|
-u, --user USER API Client Username
|
26
|
+
--norunchef Don't run chef after install bootstrap
|
25
27
|
--prerelease Install the pre-release chef gems
|
26
28
|
--print-after Show the data after a destructive operation
|
27
29
|
-r, --run-list RUN_LIST Comma separated list of roles/recipes to apply
|
28
|
-
--runchef Run chef after install bootstrap
|
29
30
|
-P, --ssh-password PASSWORD The ssh password
|
30
31
|
-p, --ssh-port PORT The ssh port
|
31
32
|
-x, --ssh-user USERNAME The ssh username
|
@@ -83,13 +83,13 @@ class Chef
|
|
83
83
|
|
84
84
|
option :norunchef,
|
85
85
|
:long => "--norunchef",
|
86
|
-
:description => "
|
86
|
+
:description => "Don't run chef after install bootstrap",
|
87
87
|
:boolean => true,
|
88
88
|
:default => true
|
89
89
|
|
90
90
|
option :nobootstrap,
|
91
91
|
:long => "--nobootstrap",
|
92
|
-
:description => "
|
92
|
+
:description => "Don't run bootstrap scripts",
|
93
93
|
:boolean => false,
|
94
94
|
:default => false
|
95
95
|
|
data/lib/knife-setup/version.rb
CHANGED