Initial commit

This commit is contained in:
WatermelonModders
2022-05-31 12:35:46 -04:00
commit fc5cb0c32c
4097 changed files with 447075 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
#!/bin/sh
case "$1" in
remove|purge|abort-install|abort-upgrade)
# This package is being removed, but its configuration has not yet
# been purged.
# stud shouldn't start at system startup
# update-rc.d -f stud remove
# remove rundir
rm -rf /var/run/stud >/dev/null 2>&1
# remove config dir
rm -rf /etc/stud >/dev/null 2>&1
;;
disappear)
;;
upgrade)
;;
failed-upgrade)
;;
*) echo "$0: didn't understand being called with \`$1'" 1>&2
exit 1;;
esac
exit 0
# EOF