From 73567f1108f46b1a31cf07bdf4b4533018e725ce Mon Sep 17 00:00:00 2001 From: Meliox Date: Sun, 7 Jun 2026 11:27:13 +0200 Subject: [PATCH] Restructure git repo for installer --- readme.md | 6 +++--- pve-mod-all.sh => src/Scripts/pve-mod-all.sh | 0 .../Scripts/pve-mod-gui-sensors.sh | 0 pve-mod-nag-screen.sh => src/Scripts/pve-mod-nag-screen.sh | 0 .../Scripts/updateallcontainers.sh | 0 5 files changed, 3 insertions(+), 3 deletions(-) rename pve-mod-all.sh => src/Scripts/pve-mod-all.sh (100%) rename pve-mod-gui-sensors.sh => src/Scripts/pve-mod-gui-sensors.sh (100%) rename pve-mod-nag-screen.sh => src/Scripts/pve-mod-nag-screen.sh (100%) rename updateallcontainers.sh => src/Scripts/updateallcontainers.sh (100%) diff --git a/readme.md b/readme.md index 20242c1..a06cee8 100644 --- a/readme.md +++ b/readme.md @@ -45,7 +45,7 @@ Instructions be performed as 'root', as normal users do not have access to the f apt-get install lm-sensors # lm-sensors must be configured, run below to configure your sensors, apply temperature offsets. Refer to lm-sensors manual for more information. sensors-detect -wget https://raw.githubusercontent.com/Meliox/PVE-mods/refs/heads/main/pve-mod-gui-sensors.sh +wget https://raw.githubusercontent.com/Meliox/PVE-mods/refs/heads/main/Scripts/pve-mod-gui-sensors.sh bash pve-mod-gui-sensors.sh install # Then clear the browser cache to ensure all changes are visualized. ``` @@ -68,7 +68,7 @@ The script provides three options: ### Install Instructions be performed as 'root', as normal users do not have access to the files. ``` -wget https://raw.githubusercontent.com/Meliox/PVE-mods/refs/heads/main/pve-mod-nag-screen.sh +wget https://raw.githubusercontent.com/Meliox/PVE-mods/refs/heads/main/Scripts/pve-mod-nag-screen.sh bash pve-mod-nag-screen.sh install ``` @@ -81,7 +81,7 @@ Each container's log file is stored in $log_path and the main script log file is ### Install ``` -wget https://raw.githubusercontent.com/Meliox/PVE-mods/refs/heads/main/updateallcontainers.sh +wget https://raw.githubusercontent.com/Meliox/PVE-mods/refs/heads/main/Scripts/updateallcontainers.sh ``` Or use git clone. Can be added to cron for e.g. monthly update: ```0 6 1 * * /root/scripts/updateallcontainers.sh``` diff --git a/pve-mod-all.sh b/src/Scripts/pve-mod-all.sh similarity index 100% rename from pve-mod-all.sh rename to src/Scripts/pve-mod-all.sh diff --git a/pve-mod-gui-sensors.sh b/src/Scripts/pve-mod-gui-sensors.sh similarity index 100% rename from pve-mod-gui-sensors.sh rename to src/Scripts/pve-mod-gui-sensors.sh diff --git a/pve-mod-nag-screen.sh b/src/Scripts/pve-mod-nag-screen.sh similarity index 100% rename from pve-mod-nag-screen.sh rename to src/Scripts/pve-mod-nag-screen.sh diff --git a/updateallcontainers.sh b/src/Scripts/updateallcontainers.sh similarity index 100% rename from updateallcontainers.sh rename to src/Scripts/updateallcontainers.sh