diff --git a/modules/purge b/modules/purge new file mode 100644 index 0000000..0039e4c --- /dev/null +++ b/modules/purge @@ -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 +} \ No newline at end of file