Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriziosalmi authored Aug 19, 2024
1 parent 0cf8956 commit 681fe5e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/lxc_autoscale/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,14 +315,18 @@ curl -sSL https://raw.githubusercontent.com/fabriziosalmi/proxmox-lxc-autoscale/
To manually remove LXC AutoScale, follow these steps:

```bash
kill -9 $(ps aux | grep lxc_autoscale | grep -v grep | awk '{print $2}')
# execute this if the service seems to be still running
# kill -9 $(ps aux | grep lxc_autoscale | grep -v grep | awk '{print $2}')
systemctl disable lxc_autoscale.service
systemctl stop lxc_autoscale.service
rm -rf /usr/local/bin/lxc_autoscale/
rm -f /etc/systemd/system/lxc_autoscale.service
cp -rp /etc/lxc_autoscale/lxc_autoscale.yaml /etc/lxc_autoscale.yaml.uninstall.backup
rm -rf /etc/lxc_autoscale/
rm -rf /var/lib/lxc_autoscale/
rm -f /var/log/lxc_autoscale.log
rm -f /var/log/lxc_autoscale.json
```

This will completely remove the service and all associated files from your system.
Expand Down

0 comments on commit 681fe5e

Please sign in to comment.