samba-tool: Fix short description and error msgs in domain level
authorGiampaolo Lauria <lauria2@yahoo.com>
Tue, 1 Nov 2011 19:21:32 +0000 (15:21 -0400)
committerJelmer Vernooij <jelmer@samba.org>
Thu, 3 Nov 2011 15:53:16 +0000 (16:53 +0100)
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Thu Nov  3 16:53:16 CET 2011 on sn-devel-104

source4/scripting/python/samba/netcmd/domain.py

index 8631d992d8b1bbc571a849924258bc23f3f7b2bb..10bcfda7eb8bde254cd985fadd56e945903fd27d 100644 (file)
@@ -77,7 +77,7 @@ class cmd_domain_export_keytab(Command):
 
 
 class cmd_domain_join(Command):
-    """Joins domain as either member or backup domain controller *"""
+    """Joins domain as either member or backup domain controller"""
 
     synopsis = "%prog <dnsdomain> [DC|RODC|MEMBER|SUBDOMAIN] [options]"
 
@@ -133,7 +133,7 @@ class cmd_domain_join(Command):
                            site=site, netbios_name=netbios_name, netbios_domain=netbios_domain, targetdir=targetdir)
             return
         else:
-            raise CommandError("Invalid role %s (possible values: MEMBER, DC, RODC)" % role)
+            raise CommandError("Invalid role '%s' (possible values: MEMBER, DC, RODC, SUBDOMAIN)" % role)
 
 
 
@@ -264,7 +264,7 @@ class cmd_domain_level(Command):
                     new_level_domain = DS_DOMAIN_FUNCTION_2008_R2
 
                 if new_level_domain <= level_domain and level_domain_mixed == 0:
-                    raise CommandError("Domain function level can't be smaller equal to the actual one!")
+                    raise CommandError("Domain function level can't be smaller than or equal to the actual one!")
 
                 if new_level_domain > min_level_dc:
                     raise CommandError("Domain function level can't be higher than the lowest function level of a DC!")
@@ -319,7 +319,7 @@ class cmd_domain_level(Command):
                 elif forest_level == "2008_R2":
                     new_level_forest = DS_DOMAIN_FUNCTION_2008_R2
                 if new_level_forest <= level_forest:
-                    raise CommandError("Forest function level can't be smaller equal to the actual one!")
+                    raise CommandError("Forest function level can't be smaller than or equal to the actual one!")
                 if new_level_forest > level_domain:
                     raise CommandError("Forest function level can't be higher than the domain function level(s). Please raise it/them first!")
                 m = ldb.Message()
@@ -332,7 +332,7 @@ class cmd_domain_level(Command):
             msgs.append("All changes applied successfully!")
             self.message("\n".join(msgs))
         else:
-            raise CommandError("Wrong argument '%s'!" % subcommand)
+            raise CommandError("invalid argument: '%s' (choose from 'show', 'raise')" % subcommand)