19 lines
270 B
Text
19 lines
270 B
Text
|
#!/sbin/openrc-run
|
||
|
|
||
|
name=$RC_SVCNAME
|
||
|
error_log="/var/log/qubes/$RC_SVCNAME.log"
|
||
|
depend() {
|
||
|
need qubes-db
|
||
|
}
|
||
|
|
||
|
start()
|
||
|
{
|
||
|
echo "Executing Qubes system initialization scripts:"
|
||
|
/usr/lib/qubes/init/qubes-sysinit.sh 2>&1 | tee -a $error_log
|
||
|
}
|
||
|
|
||
|
stop()
|
||
|
{
|
||
|
return 0
|
||
|
}
|