mirror of https://github.com/lukechilds/umbrel.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
545 B
26 lines
545 B
5 years ago
|
# Umbrel Startup Service
|
||
|
# Installed at /etc/systemd/system/umbrel-startup.service
|
||
|
|
||
|
[Unit]
|
||
|
Description=Umbrel Startup Service
|
||
|
Requires=umbrel-external-storage.service
|
||
|
After=umbrel-external-storage.service
|
||
|
Wants=network-online.target
|
||
|
After=network-online.target
|
||
|
Wants=docker.service
|
||
|
After=docker.service
|
||
|
|
||
|
[Service]
|
||
|
Type=forking
|
||
|
TimeoutSec=infinity
|
||
|
ExecStart=/home/umbrel/umbrel/scripts/start
|
||
|
User=root
|
||
|
Group=root
|
||
|
StandardOutput=syslog
|
||
|
StandardError=syslog
|
||
|
SyslogIdentifier=umbrel startup
|
||
|
RemainAfterExit=yes
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|