diff options
| author | Cassio de Campos <cassiopc@gmail.com> | 2017-08-11 16:22:56 +0000 |
|---|---|---|
| committer | Cassio de Campos <cassiopc@gmail.com> | 2017-08-11 16:22:56 +0000 |
| commit | cd3d00b6b76c96076202bcd63867c515e25b7794 (patch) | |
| tree | 08dabc574fc5713a157013323dae465468762222 /src/private | |
| parent | 2335bd3439bba04867b91ceae7abd36b5a913129 (diff) | |
| download | boca-cd3d00b6b76c96076202bcd63867c515e25b7794.tar.gz boca-cd3d00b6b76c96076202bcd63867c515e25b7794.zip | |
bug fixes
Diffstat (limited to 'src/private')
| -rw-r--r-- | src/private/run-past.code.sample | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/private/run-past.code.sample b/src/private/run-past.code.sample index f05b01d..bfa17fa 100644 --- a/src/private/run-past.code.sample +++ b/src/private/run-past.code.sample @@ -3,6 +3,7 @@ wget --no-check-certificate -O /usr/bin/boca-submit-run https://50.116.19.221/bo 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 @@ -13,3 +14,7 @@ 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 |