mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
chore: add dev:install and dev:reset mise commands to manually test daemon changes on dev machines
This commit is contained in:
Executable
+24
@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
#MISE description="Build and install uncloud binaries on dev machines, restart daemon if running"
|
||||
#MISE depends=["build:uncloudd-amd64", "build:uncloudd-arm64"]
|
||||
#MISE raw=true
|
||||
#USAGE arg "<hosts>" var=#true var_min=1 help="Hosts in [user@]host[/arch] format, arch defaults to amd64"
|
||||
|
||||
for arg in ${usage_hosts}; do
|
||||
if [[ "$arg" == */* ]]; then
|
||||
host="${arg%/*}"
|
||||
arch="${arg##*/}"
|
||||
else
|
||||
host="$arg"
|
||||
arch="amd64"
|
||||
fi
|
||||
|
||||
binary="uncloudd-linux-${arch}"
|
||||
echo "==> Installing uncloudd on ${host} (${arch})..."
|
||||
scp "$binary" "${host}:/tmp/"
|
||||
ssh "$host" "sudo install /tmp/${binary} /usr/local/bin/uncloudd && rm /tmp/${binary} && sudo systemctl try-restart uncloud"
|
||||
done
|
||||
|
||||
rm -f uncloudd-linux-amd64 uncloudd-linux-arm64
|
||||
Executable
+14
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
#MISE description="Stop uncloud daemon and wipe state on dev machines"
|
||||
#USAGE arg "<hosts>" var=#true var_min=1 help="Hosts in [user@]host format"
|
||||
|
||||
for host in ${usage_hosts}; do
|
||||
# Strip optional /arch suffix since reset doesn't need it.
|
||||
host="${host%/*}"
|
||||
echo "==> Resetting ${host}..."
|
||||
ssh "$host" "sudo systemctl stop uncloud && sudo rm -rf /var/lib/uncloud"
|
||||
done
|
||||
|
||||
echo "==> Done"
|
||||
Reference in New Issue
Block a user