aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/tools/profcleaner.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/profcleaner.sh b/src/tools/profcleaner.sh
index ded3313fa..709008e08 100755
--- a/src/tools/profcleaner.sh
+++ b/src/tools/profcleaner.sh
@@ -37,9 +37,9 @@ else
37 profiles=("$@") 37 profiles=("$@")
38fi 38fi
39 39
40sed -i \ 40sed -i -E \
41 -e "s/^blacklist/deny/" \ 41 -e "s/^(# |#)?blacklist/\1deny/" \
42 -e "s/^noblacklist/nodeny/" \ 42 -e "s/^(# |#)?noblacklist/\1nodeny/" \
43 -e "s/^whitelist/allow/" \ 43 -e "s/^(# |#)?whitelist/\1allow/" \
44 -e "s/^nowhitelist/noallow/" \ 44 -e "s/^(# |#)?nowhitelist/\1noallow/" \
45 "${profiles[@]}" 45 "${profiles[@]}"