26 lines
250 B
Bash
26 lines
250 B
Bash
|
|
||
|
#!/bin/sh
|
||
|
|
||
|
. ./settings.sh
|
||
|
|
||
|
#
|
||
|
# Main Service
|
||
|
#
|
||
|
S_ENABLED=YES
|
||
|
S_NAME="none"
|
||
|
S_PACKAGES="git sudo p7zip p7zip-full ipxe pxelinux syslinux syslinux-common"
|
||
|
|
||
|
# handle services
|
||
|
fservice $S_ENABLED $1 $S_NAME "$S_PACKAGES"
|
||
|
|
||
|
case $1 in
|
||
|
|
||
|
init)
|
||
|
|
||
|
;;
|
||
|
|
||
|
esac
|
||
|
|
||
|
|
||
|
|