mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-20 10:12:06 +01:00
18 lines
353 B
Desktop File
18 lines
353 B
Desktop File
# Boostrap the RaspiBlitz
|
|
# /etc/systemd/system/bootstrap.service
|
|
|
|
[Unit]
|
|
Description=execute on every startup before everything else
|
|
After=network.target mnt-hdd.mount
|
|
|
|
[Service]
|
|
User=root
|
|
Group=root
|
|
Type=oneshot
|
|
RemainAfterExit=true
|
|
ExecStart=/home/admin/_bootstrap.sh
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |