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
656 B
26 lines
656 B
# Umbrel External Storage SDcard Updater
|
|
# Installed at /etc/systemd/system/umbrel-external-storage-sdcard-update.service
|
|
|
|
[Unit]
|
|
Description=External Storage SDcard Updater
|
|
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=oneshot
|
|
Restart=no
|
|
ExecStart=/home/umbrel/umbrel/scripts/umbrel-os/external-storage/update-from-sdcard
|
|
TimeoutStartSec=45min
|
|
User=root
|
|
Group=root
|
|
StandardOutput=syslog
|
|
StandardError=syslog
|
|
SyslogIdentifier=external storage updater
|
|
RemainAfterExit=yes
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|