dropping a couple ancient unused scripts
authorChris Koeritz <fred@gruntose.com>
Fri, 3 Nov 2017 15:13:07 +0000 (11:13 -0400)
committerChris Koeritz <fred@gruntose.com>
Fri, 3 Nov 2017 15:13:07 +0000 (11:13 -0400)
scripts/security/fix_game_perms.sh [deleted file]
scripts/tty/lockup.sh [deleted file]

diff --git a/scripts/security/fix_game_perms.sh b/scripts/security/fix_game_perms.sh
deleted file mode 100644 (file)
index 9d21480..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-# fixes the permissions of files in the local games directory so that
-# everyone can run or read them if the owner could.
-
-sudo find /home/games -type f -perm /100 -exec chmod a+x {} ';'
-sudo find /home/games -type f -perm /400 -exec chmod a+r {} ';'
-
-sudo find /home/games -type d -exec chmod a+rx {} ';'
-
diff --git a/scripts/tty/lockup.sh b/scripts/tty/lockup.sh
deleted file mode 100644 (file)
index efd1144..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-
-# Thanks to Kevin Wika for this shell.
-
-source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
-
-trap '' HUP
-trap '' INT
-trap '' QUIT
-trap '' STOP
-trap '' EXIT
-trap '' TSTP
-
-PASSWORDFILE=$TMP/lockup_password_file
-LOGFILE=$TMP/lockup.log
-
-read password <$PASSWORDFILE
-
-echo "$(date_stringer): terminal locked" >>$LOGFILE
-
-attempt=""
-
-stty -echo
-while [[ $attempt != $password ]]
-  do
-    if [ ! -z "$attempt" ]; then
-      echo "$(date_stringer): $attempt" >>$LOGFILE
-    fi
-    clear
-    echo -n "password: "
-    read attempt
-  done
-stty echo
-
-echo -e "$(date_stringer): successful login\n" >>$LOGFILE
-
-clear
-echo "Your Password has been Accepted."