7 lines
153 B
Bash
Executable File
7 lines
153 B
Bash
Executable File
#!/bin/bash
|
|
echo "clean chef clients"
|
|
yes | knife client bulk delete '^(?!chef-).*'
|
|
if [[ "$?" != "0" ]]; then
|
|
echo "failed to clean all clients"
|
|
fi
|