#!/bin/bash . /etc/shlib include parse include common include pretty MIN_DISK_SPACE="${MIN_DISK_SPACE:-300M}" ## convert human size to bytes using numfmt ## Check remaining disk space if [ -n "$MIN_DISK_SPACE" ]; then min_disk_space_kbytes=$(numfmt --from=iec --to-unit=1024 "$MIN_DISK_SPACE") || { err "Invalid format for '\$MIN_DISK_SPACE'." exit 1 } if ! remaining_kbytes=$(df / | awk 'NR==2 {print $4}'); then err "Failed to get remaining disk space." exit 1 fi if [ "$remaining_kbytes" -lt "$min_disk_space_kbytes" ]; then err "Not enough disk space." human_min_dist_space=$(numfmt --to=iec --format="%.2f" --from-unit=1024 "$min_disk_space_kbytes") || { err "Failed to convert '\$MIN_DISK_SPACE' to human readable format." exit 1 } human_remaining_kbytes=$(numfmt --to=iec --format="%.2f" --from-unit=1024 "$remaining_kbytes") || { err "Failed to convert '\$remaining_kbytes' to human readable format." exit 1 } echo " - At least $human_min_dist_space are required." >&2 echo " - Only $human_remaining_kbytes are available." >&2 exit 1 fi fi start=$SECONDS if [ -z "$NO_UPDATE" -a -d "/opt/apps/myc-manage" ]; then MYC_UPDATE_VERSION="${MYC_UPDATE_VERSION:-master}" Elt "Checking if myc-manage requires update..." cd /opt/apps/myc-manage REMOTE_HEAD="$(git ls-remote origin "refs/heads/${MYC_UPDATE_VERSION}" 2>/dev/null | cut -f 1)" if [ -z "$REMOTE_HEAD" ]; then err "Can't find remote branch '$MYC_UPDATE_VERSION'." echo " - Either this branch is not available on 'origin' remote." >&2 echo " - Either 'origin' remote is not correctly set." >&2 exit 1 fi HEAD="$(git rev-parse HEAD)" if [ "$REMOTE_HEAD" != "$HEAD" ]; then print_info "new version available" Wrap -d "Update myc-manage" < /root/.ssh/ntfy-key chmod 600 /root/.ssh/ntfy-key fi if ! ssh-keygen -F core-01.0k.io &> /dev/null; then echo "|1|e3yYRMYJg0EpbOeTplTgtI+KbY4=|PotgCF8Rwt2OZFKr1CGYWpJ6FRA= ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBH8axkuXlI2zowRvL3Vyg/qgkKK57cqX7+9WRaLm9ECWkLvaVPGunR1zVJUZdTO3gjlSkqtblTcI00BBLt+zQvE=" \ >> /root/.ssh/known_hosts fi config_file="/etc/ntfy/ntfy.conf" mkdir -p "${config_file%/*}" ## if the config file exist and LOGIN PASSWORD ARE already in we do nothing if [ -f "$config_file" ] && grep -qE '^LOGIN=|^PASSWORD=' "$config_file"; then echo "We found a configuration for ntfy server authentification located at $config_file" else cred=$(ssh -i /root/.ssh/ntfy-key ntfy@core-01.0k.io request-token) login_ntfy=$(echo $cred | awk '/^h_/{print $1; exit}') password_ntfy=$(echo $cred | awk '{print $2; exit}') if [ -f "$config_file" ]; then echo "LOGIN='$login_ntfy'" >> "$config_file" echo "PASSWORD='$password_ntfy'" >> "$config_file" else echo "LOGIN='$login_ntfy'" >> "$config_file" echo "PASSWORD='$password_ntfy'" >> "$config_file" fi fi EOF for keyfile in {/root,/home/debian}/.ssh/authorized_keys; do [ -e "$keyfile" ] || continue sed -ri 's%^ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDri3GHzDt0Il0jv6zLjwkge48dN9tv11sqVNnKoDeUxzk4kn7Ng5ldd3p6dYL6Pa5NDqJUAhO/d/q08IWuwfEbtj8Yc/EkahcRwVD2imPceUeDgyCaOJhq7WO4c9d9yG8PnRO2\+Zk92a9L5vuELVLr4UHIQOs2/eFRY2/ODV8ebf5L1issGzfLd/IPhX5oJwMwKfqIFOP7KPQ26duHNRq4bYOD9ePW4shfxmyQDk6dSImFat05ErT\+X7703PcPx/PX2AIqqz95zqM6M26BywAohuaD5joxKgkd/mMIJylvT8GEYDlcLMHwnM7LtwtyJ1O9dkVpsibIqGy20KlAOGPf admin@0k$%ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMV3USt/BLnXnUk7rk8v42mISZaXBZuULbh2vx2Amk7k admin@old0kreplacement%g' "$keyfile" done printf "Update finished ${GREEN}successfully${NORMAL} ${GRAY}(in %.2fs)${NORMAL}.\n" "$((SECONDS - start))"