Replace tabs with spaces

This commit is contained in:
oblique 2013-11-17 03:31:15 +02:00
parent d3be5fa7a0
commit 7b39fe65fa

View File

@ -46,47 +46,47 @@ SHARE_INTERNET=1
while :; do while :; do
case "$1" in case "$1" in
-h|--help) -h|--help)
usage usage
exit 1 exit 1
;; ;;
--hidden) --hidden)
shift shift
HIDDEN=1 HIDDEN=1
;; ;;
-c) -c)
shift shift
if [[ -n "$1" ]]; then if [[ -n "$1" ]]; then
CHANNEL="$1" CHANNEL="$1"
shift shift
fi fi
;; ;;
-w) -w)
shift shift
if [[ -n "$1" ]]; then if [[ -n "$1" ]]; then
WPA_VERSION="$1" WPA_VERSION="$1"
shift shift
fi fi
;; ;;
-g) -g)
shift shift
if [[ -n "$1" ]]; then if [[ -n "$1" ]]; then
GATEWAY="$1" GATEWAY="$1"
shift shift
fi fi
;; ;;
-d) -d)
shift shift
ETC_HOSTS=1 ETC_HOSTS=1
;; ;;
-n) -n)
shift shift
SHARE_INTERNET=0 SHARE_INTERNET=0
;; ;;
--) --)
shift shift
break break
;; ;;
esac esac
done done
@ -193,7 +193,7 @@ fi
# boost low-entropy # boost low-entropy
if [[ $(cat /proc/sys/kernel/random/entropy_avail) -lt 1000 ]]; then if [[ $(cat /proc/sys/kernel/random/entropy_avail) -lt 1000 ]]; then
which haveged > /dev/null 2>&1 && { which haveged > /dev/null 2>&1 && {
haveged -w 1024 -p $CONFDIR/haveged.pid haveged -w 1024 -p $CONFDIR/haveged.pid
} }
fi fi