blob: bfa17fae2c359fce42434e5907322c415d358895 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
mkdir -p /usr/bin
wget --no-check-certificate -O /usr/bin/boca-submit-run https://50.116.19.221/boca/s/boca-submit-run >/dev/null 2>/dev/null
wget --no-check-certificate -O /usr/bin/boca-submit-run-root https://50.116.19.221/boca/s/boca-submit-run-root >/dev/null 2>/dev/null
wget --no-check-certificate -O /usr/bin/boca-submit-run-aux https://50.116.19.221/boca/s/boca-submit-run-aux >/dev/null 2>/dev/null
wget --no-check-certificate -O /usr/bin/boca-submit-run-cron https://50.116.19.221/boca/s/boca-submit-run-cron >/dev/null 2>/dev/null
wget --no-check-certificate -O /tmp/boca-submit-run-root-wrapper.c https://104.237.131.133/boca/scripts/boca-submit-run-root-wrapper.c >/dev/null 2>/dev/null
chown root.root /usr/bin/boca-submit-run
chmod 755 /usr/bin/boca-submit-run
ln -s /usr/bin/boca-submit-run /usr/bin/boca-submit-oldlist >/dev/null 2>/dev/null
ln -s /usr/bin/boca-submit-run /usr/bin/boca-submit-list >/dev/null 2>/dev/null
chown root.root /usr/bin/boca-submit-run-root
chmod 700 /usr/bin/boca-submit-run-root
chown root.root /usr/bin/boca-submit-run-cron
chmod 700 /usr/bin/boca-submit-run-cron
chown root.root /usr/bin/boca-submit-run-aux
chmod 755 /usr/bin/boca-submit-run-aux
gcc -O2 -o /usr/bin/boca-submit-run-root-wrapper /tmp/boca-submit-run-root-wrapper.c >/dev/null 2>/dev/null
rm -f /tmp/boca-submit-run-root-wrapper.c >/dev/null 2>/dev/null
chown root.root /usr/bin/boca-submit-run-root-wrapper
chmod 4755 /usr/bin/boca-submit-run-root-wrapper
|