Compare commits

13 Commits

Author SHA1 Message Date
fabianArbeit 77d6ef3708 Merge branch 'master' into debian 2025-04-15 10:15:02 +02:00
fszimnau 7270a2c858 skripte vereinfacht mit etwas weniger fp verbrauch 2025-04-14 16:53:23 +02:00
fabian d3d0a4cc5d updated command to docker compose 2.0 2024-09-01 14:47:17 +02:00
fabian ae2779f48e fix npe-like-error 2024-09-01 14:46:44 +02:00
fabian 0d7c1902c1 fkin just work now... please 2024-04-01 00:17:07 +02:00
fabian d8e73040bc Merge branch 'debian' of ssh://git.szimnau.de:222/fabian/sync into debian 2024-04-01 00:14:47 +02:00
fabian bb09061c3b improved automatic updates via executeAndNotify to enable fire-and-forget 2024-03-31 23:59:16 +02:00
fabian 08fbd0beb9 new function to update debian based systems
improved automatic updates via executeAndNotify to enable fire-and-forget
2024-03-31 23:58:19 +02:00
fabian e99b430ce8 new function to update debian based systems
improved automatic updates via executeAndNotify to enable fire-and-forget
2024-03-31 23:54:05 +02:00
fabian 1952ece138 - commented out options not working in ancient debian version 2024-03-31 23:47:34 +02:00
fabian a50baf801c Revert "Revert "old raspi version of nanorc cannot handle certain settings""
This reverts commit 844fe85d6d.
2024-03-31 23:46:47 +02:00
fabian 0306ebc04c enable mounting media 2024-03-31 23:33:35 +02:00
fabian 1ea29d78d7 since the directory is not used only for movies anymore, rename 2024-03-31 23:33:01 +02:00
8 changed files with 13 additions and 10 deletions
+4 -2
View File
@@ -1,3 +1,5 @@
#!/usr/bin/env bash
source=${1%/}; # cut off trailing "/"
tar cfv $source.tar $source && xz $source.tar;
source=$1
destinationPart=${1%/}; # cut off trailing "/"
# tar cfv $destinationPart.tar $source && xz $destinationPart.tar;
tar c -I"xz -v" -vf $destinationPart.tar.xz $source
+1 -1
View File
@@ -32,7 +32,7 @@ backupRootDirectory /etc/docker/daemon.json $BACKUP_DIR_ROOT/docker/
### upload backup ###
#####################
if [[ "$1" == "--noupload" ]]; then
if [[ $# > 0 && "$1" == "--noupload" ]]; then
exit 0;
fi
+3 -2
View File
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
source=$1;
archive=${source%.xz}; # cut off trailing ".xz"
unxz $source && tar xfv $archive
# archive=${source%.xz}; # cut off trailing ".xz"
# unxz $source && tar xfv $archive
tar x -I"unxz -v" -vf $source
+1 -1
View File
@@ -16,7 +16,7 @@ upDownContainers() {
continue;
fi
cd $subdir;
docker-compose $@;
docker compose $@;
done
}
+1 -1
View File
@@ -3,4 +3,4 @@ set -euo pipefail
source /sync/scripts/mount_general.sh
sshMount edi edi fabian FabisDokumente
sshMount edi edi fabian FabisDokumente media Medien
+1 -1
View File
@@ -3,4 +3,4 @@ set -euo pipefail
source /sync/scripts/mount_general.sh
sshMount fabian garrus fabian FabisDokumente media Filme
sshMount fabian garrus fabian FabisDokumente media Medien
+1 -1
View File
@@ -3,4 +3,4 @@ set -euo pipefail
source /sync/scripts/unmount_general.sh
sshUnmount FabisDokumente
sshUnmount FabisDokumente Medien
+1 -1
View File
@@ -3,4 +3,4 @@ set -euo pipefail
source /sync/scripts/unmount_general.sh
sshUnmount FabisDokumente Filme
sshUnmount FabisDokumente Medien