Files
dae/install/dae.service

19 lines
440 B
SYSTEMD
Raw Normal View History

2023-01-31 23:51:31 +08:00
[Unit]
2023-02-01 00:02:46 +08:00
Description=dae Service
2023-01-31 23:51:31 +08:00
Documentation=https://github.com/v2rayA/dae
After=network-online.target docker.service
Wants=network-online.target
2023-01-31 23:51:31 +08:00
[Service]
2023-02-27 14:07:36 +08:00
Type=notify
2023-01-31 23:51:31 +08:00
User=root
2023-02-27 14:07:36 +08:00
LimitNPROC=512
LimitNOFILE=1048576
2023-02-04 22:22:28 +08:00
ExecStartPre=/usr/bin/dae validate -c /etc/dae/config.dae
ExecStart=/usr/bin/dae run --disable-timestamp -c /etc/dae/config.dae
2023-02-27 14:07:36 +08:00
ExecReload=/usr/bin/dae reload $MAINPID
2023-02-04 22:52:23 +08:00
Restart=on-abnormal
2023-01-31 23:51:31 +08:00
[Install]
WantedBy=multi-user.target