Add services
This commit is contained in:
18
services/meshcentral.openrc
Normal file
18
services/meshcentral.openrc
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
#!/sbin/openrc-run
|
||||||
|
|
||||||
|
# MeshCentral Server OpenRC service, mostly used with Alpine Linux
|
||||||
|
|
||||||
|
name="MeshCentral Server"
|
||||||
|
description="MeshCentral Server"
|
||||||
|
|
||||||
|
depend() {
|
||||||
|
need networking
|
||||||
|
}
|
||||||
|
|
||||||
|
export NODE_ENV="production"
|
||||||
|
directory="/opt/meshcentral"
|
||||||
|
command="/usr/bin/node /opt/meshcentral/node_modules/meshcentral"
|
||||||
|
command_background=true
|
||||||
|
pidfile="/run/meshcentral.pid"
|
||||||
|
output_log="/var/log/meshcentral.log"
|
||||||
|
error_log="/var/log/meshcentral.err"
|
||||||
18
services/meshcentral.service
Normal file
18
services/meshcentral.service
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=MeshCentral Server
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
LimitNOFILE=1000000
|
||||||
|
ExecStart=/usr/bin/node /home/meshsvc/meshcentral/node_modules/meshcentral
|
||||||
|
WorkingDirectory=/home/meshsvc/meshcentral
|
||||||
|
Environment=NODE_ENV=production
|
||||||
|
User=meshsvc
|
||||||
|
Group=meshsvc
|
||||||
|
Restart=always
|
||||||
|
# if mesh crashes, restart every 30 secs
|
||||||
|
RestartSec=30
|
||||||
|
AmbientCapabilities=cap_net_bind_service
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
Reference in New Issue
Block a user