diff options
-rwxr-xr-x | afl-system-config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/afl-system-config b/afl-system-config index 97f95c09..366762ef 100755 --- a/afl-system-config +++ b/afl-system-config @@ -1,7 +1,7 @@ #!/bin/sh echo This reconfigures the system to have a better fuzzing performance -if [[ $EUID -ne 0 ]] || ! [ `id -u` = 0 ]; then - echo if you are root \(which you are currently not\) +if [ '!' "$EUID" = 0 ] && [ '!' `id -u` = 0 ] ; then + echo Error you need to be root to run this exit 1 fi sysctl -w kernel.core_pattern=core |