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.
21 lines
460 B
21 lines
460 B
# Umbrel External Storage Mounter
|
|
# Installed at /etc/systemd/system/umbrel-external-storage.service
|
|
|
|
[Unit]
|
|
Description=External Storage Mounter
|
|
Before=docker.service
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
Restart=no
|
|
ExecStart=/home/umbrel/umbrel/scripts/umbrel-os/external-storage/mount
|
|
TimeoutStartSec=45min
|
|
User=root
|
|
Group=root
|
|
StandardOutput=syslog
|
|
StandardError=syslog
|
|
SyslogIdentifier=external storage mounter
|
|
RemainAfterExit=yes
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|