10 lines
166 B
Bash
10 lines
166 B
Bash
#!/bin/bash
|
|
# updoot this
|
|
echo "Updating this repo"
|
|
git pull
|
|
|
|
# run da raspberry pi config script
|
|
sudo raspi-config
|
|
|
|
echo "Rebooting in 5 minutes"
|
|
sudo shutdown -r +5 |