mirror of
https://github.com/tickstep/aliyunpan.git
synced 2025-01-23 22:42:15 +08:00
18 lines
409 B
Desktop File
18 lines
409 B
Desktop File
# linux service 配置文件模版
|
||
# centos系统默认存放路径为:/lib/systemd/system/aliyunpansync.service
|
||
# 启动服务:systemctl start aliyunpansync
|
||
# 停止服务:systemctl stop aliyunpansync
|
||
|
||
[Unit]
|
||
Description=aliyunpansync
|
||
After=network.target
|
||
|
||
[Service]
|
||
Type=forking
|
||
ExecStart=/path/to/start.sh
|
||
ExecStop=/path/to/stop.sh
|
||
PrivateTmp=true
|
||
Restart=always
|
||
|
||
[Install]
|
||
WantedBy=multi-user.target |