+uid=$(id -u)
+if [ $uid -ne 0 ]; then
+ print_err "Please use sudo or run the script as root."
+ exit 1
+fi
+
+if [ "$1" = "__vbash__" ]; then
+ shift
+else
+ if readlink /bin/sh | grep -q bash; then
+ :
+ else
+ exec /bin/bash $0 "__vbash__" "$@"
+ fi
+fi
+
+