37a334a7b7
Change-Id: I15d24c3e8b08956710de4c86083def4dd55cf0cf
7 lines
137 B
Bash
Executable File
7 lines
137 B
Bash
Executable File
#!/bin/bash
|
|
echo "clean chef nodes"
|
|
yes | knife node bulk delete '.*'
|
|
if [[ "$?" != "0" ]]; then
|
|
echo "failed to clean all nodes"
|
|
fi
|