mirror of https://github.com/lukechilds/umbrel.git
Mayank Chhabra
4 years ago
committed by
GitHub
7 changed files with 113 additions and 44 deletions
@ -0,0 +1,20 @@ |
|||
# Umbrel Connection Details Logger (TTY) |
|||
# Installed at /etc/systemd/system/umbrel-connection-details.service |
|||
|
|||
[Unit] |
|||
Description=Connection Details |
|||
Requires=umbrel-startup.service |
|||
After=umbrel-startup.service |
|||
|
|||
[Service] |
|||
Type=oneshot |
|||
Restart=no |
|||
ExecStart=/usr/local/bin/umbrel-details |
|||
User=root |
|||
Group=root |
|||
StandardOutput=tty |
|||
TTYPath=/dev/tty1 |
|||
RemainAfterExit=yes |
|||
|
|||
[Install] |
|||
WantedBy=multi-user.target |
@ -0,0 +1,19 @@ |
|||
# Umbrel External Storage Mounter |
|||
# Installed at /etc/systemd/system/umbrel-external-storage.service |
|||
|
|||
[Unit] |
|||
Description=External Storage Mounter |
|||
|
|||
[Service] |
|||
Type=oneshot |
|||
Restart=no |
|||
ExecStart=/home/umbrel/umbrel/scripts/umbrel-os/external-storage/mount |
|||
User=root |
|||
Group=root |
|||
StandardOutput=syslog |
|||
StandardError=syslog |
|||
SyslogIdentifier=external storage mounter |
|||
RemainAfterExit=yes |
|||
|
|||
[Install] |
|||
WantedBy=multi-user.target |
@ -0,0 +1,25 @@ |
|||
# 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 |
Loading…
Reference in new issue