systemd: move ocid.service to contrib/
In addition, remove the installation steps from the Makefile. In general, I personally don't like projects that install service files on `make install` -- that's the job of a package manager. Signed-off-by: Aleksa Sarai <asarai@suse.com>
This commit is contained in:
parent
d559b58fd4
commit
f2f369f6f8
2 changed files with 3 additions and 2 deletions
23
contrib/systemd/ocid.service
Normal file
23
contrib/systemd/ocid.service
Normal file
|
@ -0,0 +1,23 @@
|
|||
[Unit]
|
||||
Description=Open Container Initiative Daemon
|
||||
Documentation=https://github.com/kubernetes-incubator/cri-o
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=notify
|
||||
EnvironmentFile=-/etc/sysconfig/ocid-storage
|
||||
EnvironmentFile=-/etc/sysconfig/ocid-network
|
||||
Environment=GOTRACEBACK=crash
|
||||
ExecStart=/usr/bin/ocid \
|
||||
$OCID_STORAGE_OPTIONS \
|
||||
$OCID_NETWORK_OPTIONS \
|
||||
ExecReload=/bin/kill -s HUP $MAINPID
|
||||
TasksMax=8192
|
||||
LimitNOFILE=1048576
|
||||
LimitNPROC=1048576
|
||||
LimitCORE=infinity
|
||||
TimeoutStartSec=0
|
||||
Restart=on-abnormal
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Add table
Add a link
Reference in a new issue