services:scripts
Differences
This shows you the differences between two versions of the page.
services:scripts [2016/07/06 11:33] – created peter | services:scripts [2019/12/04 20:40] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Services - Scripts ====== | ||
- | |||
- | ===== Using systemd ===== | ||
- | |||
- | Example systemd script written in **/ | ||
- | |||
- | <code bash> | ||
- | [Unit] | ||
- | Description=Job that runs the service_name daemon | ||
- | Documentation=man: | ||
- | [Service] | ||
- | Type=forking | ||
- | Environment=statedir=/ | ||
- | ExecStartPre=/ | ||
- | ExecStart=/ | ||
- | [Install] | ||
- | WantedBy=multi-user.target | ||
- | </ | ||
- | |||
- | ===== Using Upstart ===== | ||
- | |||
- | Example upstart script written in **/ | ||
- | |||
- | <code bash> | ||
- | description "Job that runs the service_name daemon" | ||
- | start on runlevel [2345] | ||
- | stop on runlevel [016] | ||
- | env statedir=/ | ||
- | pre-start exec mkdir -p $statedir | ||
- | exec / | ||
- | </ | ||
services/scripts.1467804822.txt.gz · Last modified: 2020/07/15 09:30 (external edit)