14 lines
288 B
SYSTEMD
14 lines
288 B
SYSTEMD
|
[Unit]
|
||
|
Description=Run user provided scripts on boot
|
||
|
ConditionPathExists=/usr/lib/raspi-ini/run-parts.sh
|
||
|
After=dhcpcd.service # Need to put more thought into when
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
RemainAfterExit=yes
|
||
|
ExecStart=/usr/lib/raspi-ini/run-parts.sh
|
||
|
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|