1749858112

This commit is contained in:
2025-06-13 17:41:51 -06:00
parent d05e0be983
commit 96e9cd5185
6 changed files with 19 additions and 11 deletions
+2 -1
View File
@@ -4,4 +4,5 @@ scratch.*
chrony_statistics.log chrony_statistics.log
conf-* conf-*
log_backup_* log_backup_*
influxdata-archive.key influxdata-archive.key
status.txt
+2 -2
View File
@@ -6,8 +6,8 @@ echo "Updating software lists..."
sudo apt update 1>/dev/null 2>/dev/null sudo apt update 1>/dev/null 2>/dev/null
# updoot this # updoot this
echo "Updating this repo..." # echo "Updating this repo..."
git pull 1>/dev/null 2>/dev/null # git pull 1>/dev/null 2>/dev/null
# rpi-update # rpi-update
echo "Updating Raspberry Pi firmware..." echo "Updating Raspberry Pi firmware..."
+2 -2
View File
@@ -1,8 +1,8 @@
#!/bin/bash #!/bin/bash
set -e set -e
echo "Updating this repo..." # echo "Updating this repo..."
git pull 1>/dev/null 2>/dev/null # git pull 1>/dev/null 2>/dev/null
# updoot # updoot
echo "Updating software lists..." echo "Updating software lists..."
+2 -2
View File
@@ -1,8 +1,8 @@
#!/bin/bash #!/bin/bash
# set -e # set -e
echo "Updating this repo..." # echo "Updating this repo..."
git pull 1>/dev/null 2>/dev/null # git pull 1>/dev/null 2>/dev/null
# grafana repo and install # grafana repo and install
echo "Add Grafana repo..." echo "Add Grafana repo..."
+2 -2
View File
@@ -1,8 +1,8 @@
#!/bin/bash #!/bin/bash
set -e set -e
echo "Updating this repo..." # echo "Updating this repo..."
git pull 1>/dev/null 2>/dev/null # git pull 1>/dev/null 2>/dev/null
# reconfigure to normal mode # reconfigure to normal mode
echo "Starting configure script..." echo "Starting configure script..."
+9 -2
View File
@@ -2,9 +2,16 @@
# usage # usage
## curl https://raw.githubusercontent.com/PrincessPi3/Precision-Timekeeping-Fuckery/refs/heads/main/installer_auto.sh | sudo $SHELL ## curl https://raw.githubusercontent.com/PrincessPi3/Precision-Timekeeping-Fuckery/refs/heads/main/installer_auto.sh | sudo $SHELL
set -e set -e
if [ ! -z $SUDO_USER ]; then
username=$SUDO_USER
else
username=$USER
fi
sudo apt update sudo apt update
sudo apt install git -y sudo apt install git -y
cd $HOME cd /home/$username
git clone https://github.com/PrincessPi3/Precision-Timekeeping-Fuckery.git git clone https://github.com/PrincessPi3/Precision-Timekeeping-Fuckery.git
cd Precision-Timekeeping-Fuckery cd /home/$username/Precision-Timekeeping-Fuckery
bash installer1.sh bash installer1.sh