91 lines
3.4 KiB
Bash
91 lines
3.4 KiB
Bash
#!/bin/bash
|
|
#----------------------------------------------------------------------
|
|
# copyright (C) 2010 Firewall-Services
|
|
# daniel@firewall-services.com
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 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, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
# Technical support for this program is available from Mitel Networks
|
|
# Please visit our web site www.mitel.com/sme/ for details.
|
|
#----------------------------------------------------------------------
|
|
|
|
# Source function library.
|
|
SYSTEMCTL_SKIP_REDIRECT=1
|
|
. /etc/rc.d/init.d/functions
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo "Usage: $0 <start|restart>" 1>&2
|
|
exit 1
|
|
fi
|
|
# We should only do something if $1 is 'start'.
|
|
if [ $1 != "start" ] && [ $1 != "restart" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
for i in $(seq 1 10)
|
|
do
|
|
/usr/bin/ldapwhoami -x > /dev/null 2>&1
|
|
if [ $? = 0 ]
|
|
then
|
|
exit_value=0
|
|
for link in $((echo /etc/e-smith/ldap/init/50bootstrap; find /etc/e-smith/ldap/init -type f -o -type l) | sort)
|
|
do
|
|
F=$(basename $link | sed 's/S\?[0-9][0-9]_\?//')
|
|
case $F in
|
|
bootstrap)
|
|
BOOTSTRAP=$(/sbin/e-smith/db configuration getprop ldap Bootstrap)
|
|
if [ "$BOOTSTRAP" == "run" ]; then
|
|
action "Running bootstrap-ldap-save" /sbin/e-smith/signal-event bootstrap-ldap-save
|
|
fi
|
|
;;
|
|
*.ldif)
|
|
action "Loading $F into ldap" perl -e '
|
|
use esmith::util;
|
|
use esmith::ConfigDB;
|
|
|
|
my $c = esmith::ConfigDB->open_ro;
|
|
my $domain = $c->get("DomainName")
|
|
|| die("Could not determine domain name");
|
|
my $base = esmith::util::ldapBase ($domain->value);
|
|
my $pw = esmith::util::LdapPassword();
|
|
|
|
open (STDERR, "|/usr/bin/logger -p local1.info -t ldap.init");
|
|
open (STDOUT, ">&STDERR");
|
|
my $link = shift || die "Missing filename";
|
|
my @add = system("/bin/grep -q changetype $link") == 0 ? () : ("-a");
|
|
exec "/usr/bin/ldapmodify", @add, "-c", "-x", "-H", "ldap://localhost/",
|
|
"-D", "cn=root,$base", "-w", "$pw", "-f", "$link";' $link && /bin/rm $link
|
|
;;
|
|
*)
|
|
action "Loading $F into ldap" perl -e '
|
|
open (STDERR, "|/usr/bin/logger -p local1.info -t ldap.init");
|
|
open (STDOUT, ">&STDERR");
|
|
exec shift; ' $link && /bin/rm $link
|
|
;;
|
|
esac
|
|
# Record any failure for the final return value.
|
|
if [ $? -ne 0 ]; then
|
|
exit_value=1
|
|
fi
|
|
done
|
|
|
|
exit $exit_value
|
|
fi
|
|
echo "Waiting for slapd to startup" >&2
|
|
sleep 2
|
|
done
|
|
|
|
exit 1
|