Correct command line args in knife node command

Use "knife node run_list add" instead of "knife node add run_list".

Change-Id: I6e21bcafb9bcccd8d2fd886c451df239814a4893
This commit is contained in:
Tim Potter 2014-10-21 12:02:43 +11:00
parent 8f2c7a2d03
commit 9f012d2b26
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ Note that `your_node_name` below is your node's hostname.
```
cd openstack-chef-repo
chef-client -z
knife node -z add run_list your_node_name 'role[allinone-compute]'
knife node -z run_list add your_node_name 'role[allinone-compute]'
chef-client -z -E zero-demo
```