mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* add support for ACME cert acquisition * add support for modifying hosts for a package * misc fixes * more fixes * use different port for lan clearnet than wan clearnet * fix chroot-and-upgrade always growing * bail on failure * wip * fix alpn auth * bump async-acme * fix cli * add barebones documentation * add domain to hostname info
50 lines
1.2 KiB
Bash
Executable File
50 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$UID" -ne 0 ]; then
|
|
>&2 echo 'Must be run as root'
|
|
exit 1
|
|
fi
|
|
|
|
POSITIONAL_ARGS=()
|
|
|
|
while [[ $# -gt 0 ]]; do
|
|
case $1 in
|
|
-*|--*)
|
|
echo "Unknown option $1"
|
|
exit 1
|
|
;;
|
|
*)
|
|
POSITIONAL_ARGS+=("$1") # save positional arg
|
|
shift # past argument
|
|
;;
|
|
esac
|
|
done
|
|
|
|
set -- "${POSITIONAL_ARGS[@]}" # restore positional parameters
|
|
|
|
needed=$1
|
|
|
|
if [ -z "$needed" ]; then
|
|
>&2 echo "usage: $0 <SPACE NEEDED>"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -h /media/startos/config/current.rootfs ] && [ -e /media/startos/config/current.rootfs ]; then
|
|
echo 'Pruning...'
|
|
current="$(readlink -f /media/startos/config/current.rootfs)"
|
|
while [[ "$(df -B1 --output=avail --sync /media/startos/images | tail -n1)" -lt "$needed" ]]; do
|
|
to_prune="$(ls -t1 /media/startos/images/*.rootfs /media/startos/images/*.squashfs 2> /dev/null | grep -v "$current" | tail -n1)"
|
|
if [ -e "$to_prune" ]; then
|
|
echo " Pruning $to_prune"
|
|
rm -rf "$to_prune"
|
|
sync
|
|
else
|
|
>&2 echo "Not enough space and nothing to prune!"
|
|
exit 1
|
|
fi
|
|
done
|
|
echo 'done.'
|
|
else
|
|
>&2 echo 'No current.rootfs, not safe to prune'
|
|
exit 1
|
|
fi |