2018-10-15 14:43:09 +02:00
|
|
|
# Boostrap the RaspiBlitz
|
|
|
|
# /etc/systemd/system/bootstrap.service
|
|
|
|
|
|
|
|
[Unit]
|
2018-12-10 00:24:37 +01:00
|
|
|
Description=execute on every startup before everything else
|
2020-11-25 11:39:19 +01:00
|
|
|
After=network.target mnt-hdd.mount
|
2018-10-15 14:43:09 +02:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
User=root
|
|
|
|
Group=root
|
2019-02-11 13:40:52 +01:00
|
|
|
Type=oneshot
|
2018-12-10 00:24:37 +01:00
|
|
|
RemainAfterExit=true
|
2018-10-15 14:43:09 +02:00
|
|
|
ExecStart=/home/admin/_bootstrap.sh
|
|
|
|
StandardOutput=journal
|
2019-03-15 15:03:59 +01:00
|
|
|
StandardError=journal
|
2018-10-15 14:43:09 +02:00
|
|
|
|
|
|
|
[Install]
|
2019-02-06 11:16:43 +00:00
|
|
|
WantedBy=multi-user.target
|