diff options
Diffstat (limited to 'ctdb/tests/UNIT/eventscripts/scripts/40.vsftpd.sh')
-rw-r--r-- | ctdb/tests/UNIT/eventscripts/scripts/40.vsftpd.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ctdb/tests/UNIT/eventscripts/scripts/40.vsftpd.sh b/ctdb/tests/UNIT/eventscripts/scripts/40.vsftpd.sh new file mode 100644 index 0000000..de2aa26 --- /dev/null +++ b/ctdb/tests/UNIT/eventscripts/scripts/40.vsftpd.sh @@ -0,0 +1,12 @@ +setup () +{ + debug "Setting up VSFTPD environment: service $1, not managed by CTDB" + + _service_name="vsftpd" + + if [ "$1" != "down" ] ; then + service "$_service_name" start + else + service "$_service_name" force-stopped + fi +} |