diff options
author | David Kunz <david.kunz@dknet.ch> | 2021-07-12 13:37:46 +0000 |
---|---|---|
committer | David Kunz <david.kunz@dknet.ch> | 2021-08-24 13:08:31 +0000 |
commit | 0539d581dd588e494e6a42ab7335226162652f1e (patch) | |
tree | 371ae30a8bbf84ee32d294e49f43ff9aece388d6 /libexec/fence/functions/stop | |
parent | daniels debian directory (temporary!) (diff) | |
download | compute-tools-0539d581dd588e494e6a42ab7335226162652f1e.tar.xz compute-tools-0539d581dd588e494e6a42ab7335226162652f1e.zip |
Adding fencing scripts.
Diffstat (limited to 'libexec/fence/functions/stop')
-rwxr-xr-x | libexec/fence/functions/stop | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libexec/fence/functions/stop b/libexec/fence/functions/stop new file mode 100755 index 0000000..5db1616 --- /dev/null +++ b/libexec/fence/functions/stop @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e + +NAME="${@}" + +sudo cnt stop -n ${NAME} +exit $? |