summaryrefslogtreecommitdiff
path: root/example-debian/python3-rtslib-fb.target.init
diff options
context:
space:
mode:
Diffstat (limited to 'example-debian/python3-rtslib-fb.target.init')
-rw-r--r--example-debian/python3-rtslib-fb.target.init41
1 files changed, 0 insertions, 41 deletions
diff --git a/example-debian/python3-rtslib-fb.target.init b/example-debian/python3-rtslib-fb.target.init
deleted file mode 100644
index b011013..0000000
--- a/example-debian/python3-rtslib-fb.target.init
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/bash
-
-### BEGIN INIT INFO
-# Provides: target
-# Default-Start: 3 4 5
-# Default-Stop: 0 1 2 6
-# Required-Start: $local_fs $network
-# Required-Stop: $local_fs $network
-# Short-Description: Start LIO targets
-# Description: Loads configfs and restores LIO config with targetctl
-### END INIT INFO
-
-
-case "$1" in
- start)
- echo "Loading lio configuration"
- /usr/bin/targetctl restore
- if [[ $? -gt 0 ]]; then
- exit 1
- fi
- ;;
-
- stop)
- echo "Unloading lio configuration"
- /usr/bin/targetctl clear
- if [[ $? -gt 0 ]]; then
- exit 1
- fi
- ;;
-
- restart|force-reload)
- $0 stop
- sleep 3
- $0 start
- ;;
-
- *)
- echo "usage: $0 {start|stop|restart|force-reload}"
-esac
-
-exit 0