1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ofbiz_ynh.git synced 2024-09-03 19:46:33 +02:00
ofbiz_ynh/conf/systemd.service

17 lines
354 B
SYSTEMD
Raw Normal View History

2022-02-28 23:39:48 +01:00
[Unit]
Description=Small description of the service
After=network.target
[Service]
Type=simple
User=__APP__
Group=__APP__
WorkingDirectory=__FINALPATH__/
2022-03-01 20:18:50 +01:00
ExecStart=__FINALPATH__/gradlew ofbiz
ExecStop=__FINALPATH__/gradlew "ofbiz --shutdown"
2022-02-28 23:39:48 +01:00
StandardOutput=append:/var/log/__APP__/__APP__.log
StandardError=inherit
[Install]
WantedBy=multi-user.target