mirror of
https://github.com/hak5/nano-tetra-modules.git
synced 2025-10-29 16:58:09 +00:00
* Misc: Ignore JetBrains IDE files * Modules: Update Modules for 2.6.0 (1) * SiteSurvey: Actually install mdk3 dependency.
29 lines
659 B
Bash
Executable File
29 lines
659 B
Bash
Executable File
#!/bin/sh
|
|
# author: catatonicprime
|
|
# date: March 2018
|
|
|
|
|
|
|
|
touch /tmp/tor.progress
|
|
|
|
if [ "$1" = "install" ]; then
|
|
opkg update
|
|
if [ "$2" = "internal" ]; then
|
|
opkg install tor-geoip tor
|
|
elif [ "$2" = "sd" ]; then
|
|
opkg install tor-geoip tor --dest sd
|
|
fi
|
|
mkdir -p /etc/config/tor/
|
|
cp /pineapple/modules/tor/files/torrc /etc/config/tor
|
|
mkdir -p /etc/config/tor/services
|
|
chown tor:tor /etc/config/tor/services
|
|
chown root:tor /etc/tor/torrc
|
|
chmod g+r /etc/tor/torrc
|
|
elif [ "$1" = "remove" ]; then
|
|
opkg remove tor-geoip tor
|
|
sed -i '/tor\/scripts\/autostart_tor.sh/d' /etc/rc.local
|
|
rm -rf /etc/config/tor
|
|
fi
|
|
|
|
rm /tmp/tor.progress
|