aboutsummaryrefslogtreecommitdiffstats
path: root/testing/targetcli/targetcli.initd
blob: 3dbbb9ec53fe9d4501d00a487a57ef8fc48e67ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/sbin/runscript

description="Administration tool for managing RisingTide Systems storage targets"
command="/usr/bin/targetcli"
modules="target_core_mod iscsi_target_mod"

depend() {
	need net
	after firewall
}

start() {
	ebegin "Starting ${RC_SVCNAME}"
	mount -t configfs none /sys/kernel/config
	for mod in modules; do
		modprobe $mod
	done
	$command restoreconfig clear_existing=true
	eend $?
}

stop() {
	ebegin "Stopping ${RC_SVCNAME}"
	$command clearconfig confirm=true
	umount /sys/kernel/config
	eend $?
}