diff options
author | Gerald Carter <jerry@samba.org> | 2007-05-06 22:18:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:21:51 -0500 |
commit | cfc4946ebf578f6030c8fb44e26b16fede1d0ff7 (patch) | |
tree | 42becb3593539bdedf42f7ad656f34e00145796c | |
parent | 3eca3af1bcd92e575b8c5d1034efd8d516df5e6c (diff) | |
download | samba-cfc4946ebf578f6030c8fb44e26b16fede1d0ff7.tar.gz samba-cfc4946ebf578f6030c8fb44e26b16fede1d0ff7.tar.bz2 samba-cfc4946ebf578f6030c8fb44e26b16fede1d0ff7.zip |
r22729: add help text for osver and osname options to 'net ads join' (patch from Dnailo A.)
(This used to be commit 3f588e0b65433176f8f80312c1456836717cf6de)
-rw-r--r-- | source3/utils/net_ads.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index 030c5762f3..385d9c1aa5 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -1450,7 +1450,12 @@ static int net_ads_join_usage(int argc, const char **argv) d_printf(" The OU string read from top to bottom without RDNs and delimited by a '/'.\n"); d_printf(" E.g. \"createcomputer=Computers/Servers/Unix\"\n"); d_printf(" NB: A backslash '\\' is used as escape at multiple levels and may\n"); - d_printf(" need to be doubled or even quadrupled. It is not used as a separator"); + d_printf(" need to be doubled or even quadrupled. It is not used as a separator.\n"); + d_printf(" osName=string Set the operatingSystem attribute during the join.\n"); + d_printf(" osVer=string Set the operatingSystemVersion attribute during the join.\n"); + d_printf(" NB: osName and osVer must be specified together for either to take effect.\n"); + d_printf(" Also, the operatingSystemService attribute is also set when along with\n"); + d_printf(" the two other attributes.\n"); return -1; } |