New backup 2025-04-22 22:45:41

This commit is contained in:
Penelope Gwen 2025-04-22 22:45:41 -07:00
parent 70edc1abde
commit 9f9501b3c6
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#!/usr/bin/env bash
#debian stable
debian_stable_iso_root='cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/'
debian_stable_iso_list=$(curl -s "ftp://${debian_stable_iso_root}" | grep '.iso$' | awk '{print $9}' | grep -e 'kde' -e 'standard' -e 'lxqt' -e 'xfce')
for i in ${debian_stable_iso_list[@]};do
echo "http://${debian_stable_iso_root}${i}"
done
debian_testing_iso_root='cdimage.debian.org/cdimage/weekly-live-builds/amd64/iso-hybrid/'
debian_testing_iso_list=$(curl -s "ftp://${debian_testing_iso_root}" | grep '.iso$' | awk '{print $9}' | grep -e 'standard')
for i in ${debian_testing_iso_list[@]};do
echo "http://${debian_testing_iso_root}${i}"
done

View file

@ -8,3 +8,4 @@ Scripts/create-podman-container-arm.sh
.local/lib/python3.13/site-packages/ssi.py .local/lib/python3.13/site-packages/ssi.py
.local/bin/ssi-server .local/bin/ssi-server
.local/bin/hass-cli .local/bin/hass-cli
Scripts/iso_updater.sh