User Tools

Site Tools


services:scripts

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

services:scripts [2016/07/06 11:33] – created peterservices:scripts [2019/12/04 20:40] (current) – removed peter
Line 1: Line 1:
-====== Services - Scripts ====== 
- 
-===== Using systemd ===== 
- 
-Example systemd script written in **/lib/systemd/system/service_name.service**: 
- 
-<code bash> 
-[Unit] 
-Description=Job that runs the service_name daemon 
-Documentation=man:service_name(1) 
-[Service] 
-Type=forking 
-Environment=statedir=/var/cache/service_name 
-ExecStartPre=/usr/bin/mkdir -p ${statedir} 
-ExecStart=/usr/bin/service_name-daemon --arg1 "hello world" --statedir ${statedir} 
-[Install] 
-WantedBy=multi-user.target 
-</code> 
- 
-===== Using Upstart ===== 
- 
-Example upstart script written in **/etc/init/service_name.conf**: 
- 
-<code bash> 
-description "Job that runs the service_name daemon" 
-start on runlevel [2345] 
-stop on runlevel [016] 
-env statedir=/var/cache/service_name 
-pre-start exec mkdir -p $statedir 
-exec /usr/bin/service_name-daemon --arg1 "hello world" --statedir $statedir 
-</code> 
  
services/scripts.1467804822.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki