diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-01-07 05:50:04 -0600 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-01-06 23:57:02 -0600 |
commit | d59ac4d6e93cd9171bbc1c878a88410295a1f9e5 (patch) | |
tree | e2318e71f20609a7d63f161219c1d7d2fb7a9ab1 /source4 | |
parent | 637cd09d4b70bee49a924dbb60d0931add62adf6 (diff) | |
download | samba-d59ac4d6e93cd9171bbc1c878a88410295a1f9e5.tar.gz samba-d59ac4d6e93cd9171bbc1c878a88410295a1f9e5.tar.bz2 samba-d59ac4d6e93cd9171bbc1c878a88410295a1f9e5.zip |
r26686: Fix bug 5143 by Jason Tarbet. This prevented an easy cut-and-paste of
the provision options used.
Andrew Bartlett
(This used to be commit 51cd93344dfeb3556fada523e38bbcd7e51fbbe1)
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/setup/provision | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/setup/provision b/source4/setup/provision index 9d818fdc18..161698ccf4 100755 --- a/source4/setup/provision +++ b/source4/setup/provision @@ -182,7 +182,7 @@ if (ldapbase) { message("--invocationid='%s' \\\n", subobj.INVOCATIONID); message("--adminpass='%s' --krbtgtpass='%s' \\\n", subobj.ADMINPASS, subobj.KRBTGTPASS); message("--machinepass='%s' --dnspass='%s' \\\n", subobj.MACHINEPASS, subobj.DNSPASS); - message("--root='%s' --nobody='%s' --nogroup-'%s' \\\n", subobj.ROOT, subobj.NOBODY, subobj.NOGROUP); + message("--root='%s' --nobody='%s' --nogroup='%s' \\\n", subobj.ROOT, subobj.NOBODY, subobj.NOGROUP); message("--wheel='%s' --users='%s' --server-role='%s' \\\n", subobj.WHEEL, subobj.USERS, subobj.SERVERROLE); if (ldapbackend) { message("--ldap-backend='%s' \\\n", subobj.LDAPBACKEND); |