tog bort filer

This commit is contained in:
fwastring 2025-12-13 19:07:28 +01:00
parent 98a5eafd16
commit fd9b7a03cf
2 changed files with 0 additions and 28 deletions

View file

@ -1,5 +0,0 @@
#!/bin/sh
sudo cp /etc/nixos/hardware-configuration.nix ./$1/nixos
sudo nixos-rebuild switch --flake "/home/fw/nix#$1"

View file

@ -1,23 +0,0 @@
#!/bin/sh
set -x
systemctl stop k3s
systemctl disable k3s
systemctl daemon-reload
rm -f /etc/systemd/system/k3s.service
rm -f /usr/local/bin/k3s
if [ -L /usr/local/bin/kubectl ]; then
rm -f /usr/local/bin/kubectl
fi
if [ -L /usr/local/bin/crictl ]; then
rm -f /usr/local/bin/crictl
fi
if [ -e /sys/fs/cgroup/systemd/system.slice/k3s.service/cgroup.procs ]; then
kill -9 `cat /sys/fs/cgroup/systemd/system.slice/k3s.service/cgroup.procs`
fi
umount `cat /proc/self/mounts | awk '{print $2}' | grep '^/run/k3s'`
umount `cat /proc/self/mounts | awk '{print $2}' | grep '^/var/lib/rancher/k3s'`
rm -rf /var/lib/rancher/k3s
rm -rf /etc/rancher/k3s
rm -f /usr/local/bin/k3s-uninstall.sh