Readme update

This commit is contained in:
Bjango
2017-08-04 21:30:33 +10:00
parent 31c77a960c
commit 7c1c12fed4

View File

@@ -39,7 +39,19 @@ A 5 digit passcode is generated by the install script. It can be found in the pr
----- -----
### Starting iStat Server at boot ### Starting iStat Server at boot
iStat Server does not install any scripts to start itself at boot. Sample scripts for rc.d, upstart and systemd are included in the resources directory. You may need to customize them depending on your OS. iStat Server does not install any scripts to start itself at boot. Sample scripts for rc.d, upstart and systemd are included in the resources directory. You may need to customize them depending on your OS.
### Starting with systemd
- sudo cp ./resource/systemd/istatserver.service /etc/systemd/system/istatserver.service
- sudo service istatserver start
### Starting with upstart
- sudo cp ./resource/upstart/istatserver.conf /etc/init/istatserver.conf
- sudo start istatserver
### Starting with rc.d
- sudo cp ./resource/rc.d/istatserver /etc/rc.d/istatserver
- sudo /etc/rc.d/istatserver start
----- -----