Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#ident "@(#)service"
# service control
case $1 in
'start')
su - serviceowner -c "servicestartcommands"
;;
'stop')
su - serviceowner -c "servicestopcommands"
;;
*)
echo "usage: /etc/init.d/service {start|stop}"
;;
esac