mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-14 06:52:36 +00:00
9 lines
147 B
Bash
Executable file
9 lines
147 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
set +e
|
|
source ${VIRTUALENVWRAPPER_SCRIPT}
|
|
workon ctftools
|
|
set -e
|
|
|
|
[ $(ropper --file /bin/false | wc -l) -gt 400 ] || exit 1
|
|
exit 0
|