This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:FED82F1C73FF53FB1EE9926336615E0FD12833CF]
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:FED82F1C73FF53FB1EE9926336615E0FD12833CF]
#!/bin/bash | |
BACKUP_DIR=/mnt/backup | |
TODAY="$(date +%YW%W_%u-%A)" | |
YESTERDAY="$(date -d Yesterday +%YW%W_%u-%A)" | |
DEST="${BACKUP_DIR}/${TODAY}" | |
LINK_DEST="${BACKUP_DIR}/${YESTERDAY}" |
#!/bin/bash | |
compose_file_path=$1 | |
project_name=$2 #first part before "_" in container-names. for example nc if container name is nc_cloud | |
backup_path=$3 | |
function backup_volume { | |
volume_name=$1 | |
backup_destination=$2 |
# Locale / Keymap | |
d-i debian-installer/locale string en_US.UTF-8 | |
d-i debian-installer/keymap select de-latin1 | |
d-i console-keymaps-at/keymap select de | |
d-i keyboard-configuration/xkb-keymap select nodeadkeys | |
d-i languagechooser/language-name-fb select German | |
d-i countrychooser/country-name select Germany | |
d-i console-setup/layoutcode string de_DE | |
# Netzwerk-Konfiguration | |
d-i netcfg/dhcp_timeout string 30 |