/usr/sbin/migrate-ds is in 389-ds-base 1.3.7.10-1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | #!/usr/bin/env perl
# BEGIN COPYRIGHT BLOCK
# Copyright (C) 2007 Red Hat, Inc.
# All rights reserved.
#
# License: GPL (version 3 or any later version).
# See LICENSE for details.
# END COPYRIGHT BLOCK
#
###########################
#
# This perl module provides a way to set up a new installation after
# the binaries have already been extracted. This is typically after
# using native packaging support to install the package e.g. RPM,
# pkgadd, depot, etc. This script will show the license, readme,
# dsktune, then run the usual setup pre and post installers.
#
##########################
use lib qw(/usr/lib/x86_64-linux-gnu/dirsrv/perl);
use strict;
use DSMigration;
use Migration;
use Resource;
my $res = new Resource("/usr/share/dirsrv/properties/migrate-ds.res",
"/usr/share/dirsrv/properties/setup-ds.res");
my $mig = new Migration($res);
$mig->msg('begin_ds_migration', $mig->{oldsroot});
if (!migrateDS($mig)) {
$mig->doExit(1);
}
$mig->msg('end_ds_migration');
$mig->doExit(0);
END {
if ($mig and $mig->{keep}) {
$mig->{inf}->write("__temp__");
}
}
# emacs settings
# Local Variables:
# mode:perl
# indent-tabs-mode: nil
# tab-width: 4
# End:
|