innocent SBC fun

This commit is contained in:
rusefillc 2021-04-27 18:28:09 -04:00
parent 742ea83bfa
commit b42fd70b87
3 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#
# sudo systemctl enable rusefi
#
[Unit]
Description=rusEFI systemd
[Service]
ExecStart=/rw/startup_root.sh
[Install]
WantedBy=multi-user.target

View File

@ -0,0 +1,7 @@
#!/bin/sh
cd /rw
date >> startup.log
whoami >> startup.log
sudo su - pi /rw/startup_user.sh

View File

@ -0,0 +1,4 @@
#!/bin/sh
cd /rw
echo Hello User
whoami >> startup.log