summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2009-11-27 10:50:03 +0100
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2009-11-27 12:26:11 +0100
commitfd313282a24e58570c2fa5b3fdfd0b84d0053363 (patch)
tree9060e6305406e464345a79bdd46d702d5db40294
parentd6c60f8447ce92a15d48a35d3f21d881c4428663 (diff)
downloadsamba-fd313282a24e58570c2fa5b3fdfd0b84d0053363.tar.gz
samba-fd313282a24e58570c2fa5b3fdfd0b84d0053363.tar.bz2
samba-fd313282a24e58570c2fa5b3fdfd0b84d0053363.zip
s4:upgrade script - rename it to "upgrade_from_s3" and do some rework
- Give a better name to the script - Move it to the location where also "upgradeprovision" resides - Fix up trailing whitespaces and tabs
-rwxr-xr-xsource4/scripting/bin/upgrade_from_s3 (renamed from source4/setup/upgrade)37
1 files changed, 20 insertions, 17 deletions
diff --git a/source4/setup/upgrade b/source4/scripting/bin/upgrade_from_s3
index 3d1316949f..03f44157c2 100755
--- a/source4/setup/upgrade
+++ b/source4/scripting/bin/upgrade_from_s3
@@ -7,12 +7,12 @@
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
-#
+#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
@@ -27,21 +27,24 @@ import samba
import samba.getopt as options
from samba import param
from samba.auth import system_session
+from samba.provision import find_setup_dir
+from samba.upgrade import upgrade_provision
+from samba.samba3 import Samba3
-parser = optparse.OptionParser("upgrade [options] <libdir> <smbconf>")
+parser = optparse.OptionParser("upgrade_from_s3 [options] <libdir> <smbconf>")
sambaopts = options.SambaOptions(parser)
parser.add_option_group(sambaopts)
parser.add_option_group(options.VersionOptions(parser))
credopts = options.CredentialsOptions(parser)
parser.add_option_group(credopts)
-parser.add_option("--setupdir", type="string", metavar="DIR",
- help="directory with setup files")
+parser.add_option("--setupdir", type="string", metavar="DIR",
+ help="directory with setup files")
parser.add_option("--realm", type="string", metavar="REALM", help="set realm")
parser.add_option("--quiet", help="Be quiet")
-parser.add_option("--blank",
- help="do not add users or groups, just the structure")
-parser.add_option("--targetdir", type="string", metavar="DIR",
- help="Set target directory")
+parser.add_option("--blank",
+ help="do not add users or groups, just the structure")
+parser.add_option("--targetdir", type="string", metavar="DIR",
+ help="Set target directory")
opts, args = parser.parse_args()
@@ -53,31 +56,31 @@ def message(text):
if len(args) < 1:
parser.print_usage()
sys.exit(1)
-from samba.samba3 import Samba3
+
message("Reading Samba3 databases and smb.conf\n")
+
libdir = args[0]
if not os.path.isdir(libdir):
print "error: %s is not a directory"
sys.exit(1)
+
if len(args) > 1:
smbconf = args[1]
else:
smbconf = os.path.join(libdir, "smb.conf")
-samba3 = Samba3(libdir, smbconf)
-from samba.provision import find_setup_dir
-from samba.upgrade import upgrade_provision
+samba3 = Samba3(libdir, smbconf)
message("Provisioning\n")
setup_dir = opts.setupdir
if setup_dir is None:
- setup_dir = find_setup_dir()
+ setup_dir = find_setup_dir()
lp = sambaopts.get_loadparm()
smbconf = lp.configfile
creds = credopts.get_credentials(lp)
-upgrade_provision(samba3, setup_dir, message, credentials=creds,
- session_info=system_session(), smbconf=smbconf,
- targetdir=opts.targetdir)
+upgrade_provision(samba3, setup_dir, message, credentials=creds,
+ session_info=system_session(), smbconf=smbconf,
+ targetdir=opts.targetdir)