add Framework deletion

This commit is contained in:
2026-02-06 02:00:38 -05:00
parent d868031c7d
commit 5fa0cdbb83

12
modules/purge Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Dynasty Purge Protocol
run_purge() {
echo -e "${RED}🔥 WARNING: This will incinerate the Dynasty Framework.${NC}"
read -p "Are you sure? (y/n): " confirm
if [[ "$confirm" == "y" ]]; then
sudo rm -rf /opt/dynr
sudo rm /usr/local/bin/dynr
echo -e "${GOLD}The Dynasty has retreated into the shadows.${NC}"
exit 0
fi
}