diff options
Diffstat (limited to 'source4/setup')
-rwxr-xr-x | source4/setup/newuser | 6 | ||||
-rwxr-xr-x | source4/setup/provision | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/source4/setup/newuser b/source4/setup/newuser index f5015611b9..cf2c7b8382 100755 --- a/source4/setup/newuser +++ b/source4/setup/newuser @@ -6,8 +6,7 @@ exec smbscript "$0" ${1+"$@"} Released under the GNU GPL v2 or later */ -options = new Object(); -ok = GetOptions(ARGV, options, +options = GetOptions(ARGV, "POPT_AUTOHELP", "POPT_COMMON_SAMBA", "POPT_COMMON_VERSION", @@ -15,7 +14,8 @@ ok = GetOptions(ARGV, options, 'unixname=s', 'password=s', 'quiet'); -if (ok == false) { + +if (options == undefined) { println("Failed to parse options: " + options.ERROR); return -1; } diff --git a/source4/setup/provision b/source4/setup/provision index a9bbfa6a26..35c9d64f80 100755 --- a/source4/setup/provision +++ b/source4/setup/provision @@ -6,8 +6,7 @@ exec smbscript "$0" ${1+"$@"} Released under the GNU GPL v2 or later */ -options = new Object(); -ok = GetOptions(ARGV, options, +options = GetOptions(ARGV, "POPT_AUTOHELP", "POPT_COMMON_SAMBA", "POPT_COMMON_VERSION", @@ -29,8 +28,9 @@ ok = GetOptions(ARGV, options, 'users=s', 'quiet', 'blank'); -if (ok == false) { - println("Failed to parse options: " + options.ERROR); + +if (options == undefined) { + println("Failed to parse options: ", options.ERROR); return -1; } |