File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -25,20 +25,30 @@ as simple as:
2525
2626 This will create a job called ``myrobot `` on your machine, which launches
2727base.launch. It will start automatically when you next start your machine,
28- or you can bring it up and down manually:
28+ or you can bring it up and down manually (command may differ per providers (`` upstart `` by default)) :
2929
3030.. code-block :: bash
3131
32+ When upstart is in use
3233 $ sudo service myrobot start
3334 $ sudo service myrobot stop
3435
36+ When systemd in use
37+ $ sudo systemctl start myrobot
38+ $ sudo systemctl stop myrobot
39+
3540 If the job is crashing on startup, or you otherwise want to see what is
3641being output to the terminal on startup, check the upstart log:
3742
3843.. code-block :: bash
3944
45+ upstart
4046 $ sudo tail /var/log/upstart/myrobot.log -n 30
4147
48+
49+ systemd
50+ $ sudo journalctl -u myrobot
51+
4252 For more details, please see :doc: `install ` and :doc: `uninstall `.
4353
4454
You can’t perform that action at this time.
0 commit comments