[mcs] drop old 3rdparty stuff
This commit is contained in:
16
scripts/3rdparty/mcs_pre_iso_script.sh
vendored
16
scripts/3rdparty/mcs_pre_iso_script.sh
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# setup ISOLINUX background
|
||||
cp /sabayon/remaster/mcs/isolinux/back.jpg "${CDROOT_DIR}/isolinux/back.jpg" || exit 1
|
||||
|
||||
# execute parent script
|
||||
/sabayon/scripts/generic_pre_iso_script.sh MCS || exit 1
|
||||
|
||||
echo "Copying new kernel images over"
|
||||
boot_kernel=$(find "${CHROOT_DIR}/boot" -name "kernel-*" | sort | head -n 1)
|
||||
boot_ramfs=$(find "${CHROOT_DIR}/boot" -name "initramfs-*" | sort | head -n 1)
|
||||
cp "${boot_kernel}" "${CDROOT_DIR}/boot/sabayon" || exit 1
|
||||
cp "${boot_ramfs}" "${CDROOT_DIR}/boot/sabayon.igz" || exit 1
|
||||
|
||||
# Setup default splash theme
|
||||
sed -i "s/theme:sabayon/theme:babel/g" "${CDROOT_DIR}/isolinux/txt.cfg" || exit 1
|
||||
@@ -1,21 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
env-update
|
||||
source /etc/profile
|
||||
|
||||
export FORCE_EAPI=2
|
||||
equo update
|
||||
if [ "${?}" != "0" ]; then
|
||||
sleep 1200 || exit 1
|
||||
equo update || exit 1
|
||||
fi
|
||||
|
||||
# unmask apache with worker MPM
|
||||
equo unmask www-servers/apache[threads]
|
||||
# mask regular one
|
||||
equo mask www-servers/apache[-threads]
|
||||
|
||||
# better installing sun-jdk here, to make packages_to_install happy
|
||||
equo install sun-jdk
|
||||
java-config -S sun-jdk
|
||||
env-update
|
||||
@@ -1,240 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
env-update
|
||||
source /etc/profile
|
||||
|
||||
# merge config updates first
|
||||
echo -5 | equo conf update
|
||||
|
||||
# make sure that sun-jdk is in use
|
||||
java-config -S sun-jdk || exit 1
|
||||
|
||||
# Create OEM directory
|
||||
mkdir -p /etc/oem
|
||||
|
||||
# Setup fbsplash (babel theme)
|
||||
mv /.mcs/fbsplash-babel /etc/splash/babel || exit 1
|
||||
chown root:root /etc/splash/babel -R || exit 1
|
||||
echo "babel" > /etc/oem/splash_name || exit 1
|
||||
# update initramfs with new splash data
|
||||
for img in /boot/initramfs-genkernel-*; do
|
||||
splash_geninitramfs -a "${img}" babel || exit 1
|
||||
done
|
||||
|
||||
# copy background over
|
||||
cp /.mcs/background/* /usr/share/backgrounds/ -R || exit 1
|
||||
chown root:root /usr/share/backgrounds/ -R || exit 1
|
||||
# setup background in /etc/skel
|
||||
for file in `find /etc/skel -type f`; do
|
||||
sed -i "s:/usr/share/backgrounds/sabayonlinux.jpg:/usr/share/backgrounds/background-mailware.jpg:g" "${file}"
|
||||
sed -i "s:/usr/share/backgrounds/sabayonlinux.png:/usr/share/backgrounds/background-mailware.png:g" "${file}"
|
||||
done
|
||||
sed -i "s:/usr/share/backgrounds/sabayonlinux.png:/usr/share/backgrounds/background-mailware.png:g" /etc/init.d/installer-gui
|
||||
|
||||
# setup Desktop icons
|
||||
rm /etc/skel/Desktop/*.desktop
|
||||
cp /usr/share/applications/keyboard.desktop /etc/skel/Desktop/ -p
|
||||
cp /usr/share/applications/389-console*.desktop /etc/skel/Desktop/ -p
|
||||
cp /.mcs/desktop/* /etc/skel/Desktop -R
|
||||
chmod +x /etc/skel/Desktop/*
|
||||
chown root:root /etc/skel/Desktop -R
|
||||
|
||||
# Setup Firefox
|
||||
for file in `find /etc/skel/.mozilla -name prefs.js`; do
|
||||
sed -i 's:sabayon.org:babel.it:g' "${file}"
|
||||
done
|
||||
|
||||
mkdir -p /etc/skel/.local/share/applications
|
||||
echo "[Added Associations]" >> /etc/skel/.local/share/applications/mimeapps.list
|
||||
echo "application/octet-stream=firefox.desktop;" >> /etc/skel/.local/share/applications/mimeapps.list
|
||||
|
||||
# Setup init scripts
|
||||
cp /.mcs/mcs-functions.sh /sbin/mcs-functions.sh
|
||||
chmod 755 /sbin/mcs-functions.sh
|
||||
chown root:root /sbin/mcs-functions.sh
|
||||
cp /.mcs/mcs-oemsystem-default /etc/init.d/oemsystem-default
|
||||
chmod 755 /etc/init.d/oemsystem-default
|
||||
chown root:root /etc/init.d/oemsystem-default
|
||||
rc-update add oemsystem-default default
|
||||
|
||||
# setup fqdn
|
||||
sed -i 's/sabayon/localhost.localdomain example.com sabayon/g' /etc/hosts
|
||||
sed -i 's/sabayon/localhost.localdomain/g' /etc/conf.d/hostname
|
||||
# setup fqdn in 389-admin, stop annoying apache crap
|
||||
sed -i '/^#ServerName/ s/.*/ServerName localhost.localdomain/g' /etc/dirsrv/admin-serv/httpd.conf || exit 1
|
||||
|
||||
# setup MySQL
|
||||
# Fixup mysqld permissions, ebuild bug?
|
||||
chown mysql:mysql /var/run/mysqld -R
|
||||
|
||||
echo "password=mcsmanager" > /root/.my.cnf || exit 1
|
||||
|
||||
HOSTNAME="somethingelse" equo config dev-db/mysql || exit 1
|
||||
if [ "${?}" != "0" ]; then
|
||||
exit 1
|
||||
fi
|
||||
rm /root/.my.cnf -f
|
||||
# setup password
|
||||
sed -i '/^#password/ s/your_password/mcsmanager/g' /etc/mysql/my.cnf || exit 1
|
||||
sed -i '/^#password/ s/#//g' /etc/mysql/my.cnf || exit 1
|
||||
|
||||
# start and insert data
|
||||
echo "Setting up mysql"
|
||||
/etc/init.d/mysql start --nodeps || exit 1
|
||||
mysql -u root --password=mcsmanager -h localhost < /.mcs/mwsql.sql
|
||||
mysql -u root --password=mcsmanager -h localhost < /.mcs/mwsql-user.sql
|
||||
mysql -u root --password=mcsmanager -h localhost < /.mcs/bedework.sql
|
||||
mysql -u root --password=mcsmanager -h localhost < /.mcs/bedework_init.sql
|
||||
/etc/init.d/mysql stop --nodeps
|
||||
|
||||
# setup 389-console data
|
||||
mkdir /etc/skel/.389-console
|
||||
echo "UserID=admin
|
||||
HostURL=http\://localhost\:9830
|
||||
" > /etc/skel/.389-console/Console.1.1.5.Login.preferences
|
||||
|
||||
# Setup Postfix
|
||||
echo "Setting up Postfix"
|
||||
cp /.mcs/postfix/main.cf /etc/postfix/main.cf || exit 1
|
||||
cp /.mcs/postfix/master.cf /etc/postfix/master.cf || exit 1
|
||||
cp /.mcs/postfix/ldapconf /etc/postfix/ldapconf -Rp || exit 1
|
||||
chown root:root /etc/postfix/{main,master}.cf || exit 1
|
||||
chmod 644 /etc/postfix/{main,master}.cf || exit 1
|
||||
chmod 755 /etc/postfix/ldapconf || exit 1
|
||||
chmod 644 /etc/postfix/ldapconf/*.cf || exit 1
|
||||
chown root:root /etc/postfix/ldapconf -R || exit 1
|
||||
( cd /etc/mail && newaliases ) || exit 1
|
||||
touch /etc/postfix/transport || exit 1
|
||||
( cd /etc/postfix && postmap hash:/etc/postfix/transport ) || exit 1
|
||||
mkdir /var/spool/filter || exit 1
|
||||
chown mail:mail /var/spool/filter || exit 1
|
||||
chmod 775 /var/spool/filter || exit 1
|
||||
# mmt_scripts
|
||||
cp /.mcs/mmt_scripts /usr/local/ -Rp || exit 1
|
||||
chown root:root /usr/local/mmt_scripts -R || exit 1
|
||||
chmod 755 /usr/local/mmt_scripts/* -R || exit 1
|
||||
chmod 755 /usr/local/mmt_scripts || exit 1
|
||||
|
||||
# temp unpack jboss-deploy.tar.bz2
|
||||
echo "Unpacking jboss-deploy data"
|
||||
tar xjf /.mcs/jboss-deploy.tar.bz2 -C /tmp || exit 1
|
||||
jboss_deploy="/tmp/jboss-deploy"
|
||||
if [ ! -d "${jboss_deploy}" ]; then
|
||||
echo "${jboss_deploy} not a dir"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# copy mcs-ldapinit.pl somewhere, it will be used to setup mcs ldap schema at runtime
|
||||
cp /.mcs/scripts/mcs-ldapinit.pl /usr/sbin/ || exit 1
|
||||
chmod +x /usr/sbin/mcs-ldapinit.pl || exit 1
|
||||
chown root:root /usr/sbin/mcs-ldapinit.pl || exit 1
|
||||
|
||||
## Setup MCS
|
||||
|
||||
# copy jboss data over
|
||||
echo "Copying jboss-bin deploy data over"
|
||||
cp /tmp/jboss-deploy/* /opt/jboss-bin-4.2/server/default/deploy/ -Rp || exit 1
|
||||
chown jboss:jboss /opt/jboss-bin-4.2/server/default/deploy/ -R || exit 1
|
||||
rm -r /tmp/jboss-deploy || exit 1
|
||||
|
||||
# setup jboss login info
|
||||
cp /.mcs/mailware-jboss-conf/login-config.xml /opt/jboss-bin-4.2/server/default/conf/login-config.xml || exit 1
|
||||
chown jboss:jboss /opt/jboss-bin-4.2/server/default/conf/login-config.xml || exit 1
|
||||
cp /.mcs/mailware-jboss-conf/jboss-log4j.xml /opt/jboss-bin-4.2/server/default/conf/jboss-log4j.xml || exit 1
|
||||
chown jboss:jboss /opt/jboss-bin-4.2/server/default/conf/jboss-log4j.xml || exit 1
|
||||
|
||||
# temp fix (waiting for updated pkgs) for 389-ds dir perms
|
||||
chmod 755 /var/lock/dirsrv || exit 1
|
||||
chmod 755 /var/lib/dirsrv || exit 1
|
||||
|
||||
# setup 389 schema
|
||||
cp /.mcs/389-mailware-schema/* /etc/dirsrv/schema/ || exit 1
|
||||
chown root:root /etc/dirsrv/schema/*.ldif -R || exit 1
|
||||
|
||||
# setup config
|
||||
cp /.mcs/mailware-sabayon-conf/web/WEB-INF/balance.xml /opt/jboss-bin-4.2/server/default/deploy/MailWare-Manager.war/WEB-INF/balance.xml || exit 1
|
||||
cp /.mcs/mailware-sabayon-conf/web/WEB-INF/conf/axis2.xml /opt/jboss-bin-4.2/server/default/deploy/MailWare-Manager.war/WEB-INF/conf/axis2.xml || exit 1
|
||||
|
||||
# setup MySQL jdbc connector
|
||||
echo "setting up MySQL jdbc connector"
|
||||
ln -s /usr/share/jdbc-mysql/lib/jdbc-mysql.jar /opt/jboss-bin-4.2/server/default/lib/ || exit 1
|
||||
# setup MCS MySQL password
|
||||
sed -i "s:<password>password</password>:<password>mcsmanager</password>:g" /opt/jboss-bin-4.2/server/default/deploy/mailware-collaboration-mysql-ds.xml || exit 1
|
||||
sed -i "s:<password>password</password>:<password>mcsmanager</password>:g" /opt/jboss-bin-4.2/server/default/deploy/bedework-mysql-ds.xml || exit 1
|
||||
sed -i "s:org.bedework.global.jdbcpw=.*:org.bedework.global.jdbcpw=mcsmanager:g" /opt/jboss-bin-4.2/server/default/deploy/rpical.ear/properties/calendar/env.properties || exit 1
|
||||
sed -i "s:mailware1.babel.it:localhost:g" /opt/jboss-bin-4.2/server/default/deploy/*/WEB-INF/classes/mw-collaboration.properties || exit 1
|
||||
sed -i "s:mailware1:localhost:g" /opt/jboss-bin-4.2/server/default/deploy/*/WEB-INF/classes/mw-collaboration.properties || exit 1
|
||||
|
||||
mkdir /maildirs || exit 1
|
||||
chown mail:mail /maildirs -R || exit 1
|
||||
|
||||
# Setup dovecot
|
||||
cp /.mcs/dovecot*.conf /etc/dovecot/ || exit 1
|
||||
chown root:root /etc/dovecot/dovecot*.conf || exit 1
|
||||
chmod 644 /etc/dovecot/dovecot*.conf || exit 1
|
||||
touch /etc/dovecot/passwd.masterusers || exit 1
|
||||
|
||||
# Setup ejabberd, why do I need to enable shell for ejabberd-babel?
|
||||
usermod -s /bin/sh jabber || exit 1
|
||||
usermod -d /home/jabber -m jabber || exit 1
|
||||
mkdir -p /home/jabber || exit 1
|
||||
chown jabber:jabber /home/jabber -R || exit 1
|
||||
|
||||
# Copy babel configuration file over
|
||||
cp /.mcs/ejabberd.cfg.vanilla.working /etc/jabber/ejabberd.cfg || exit 1
|
||||
chown root:jabber /etc/jabber/ejabberd.cfg || exit 1
|
||||
chmod 640 /etc/jabber/ejabberd.cfg || exit 1
|
||||
|
||||
# add services to init
|
||||
# autostarted by the mcs setup script
|
||||
## rc-update add 389-ds default
|
||||
## rc-update add 389-admin default
|
||||
rc-update add 389-ds-snmp default
|
||||
rc-update add jboss-bin-4.2 default
|
||||
rc-update add mysql default
|
||||
rc-update add dovecot default
|
||||
rc-update add postfix default
|
||||
rc-update add ejabberd default
|
||||
|
||||
# remove unused services from init
|
||||
rc-update del sabayon-mce default
|
||||
rc-update del sabayon-mce boot
|
||||
rc-update del music default
|
||||
|
||||
# remove temp .mcs dir
|
||||
rm /.mcs -rf
|
||||
|
||||
# Sabayon stuff
|
||||
echo "Working out Sabayon stuff"
|
||||
rm -rf /install-data || exit 1
|
||||
rm -rf /usr/share/sabayon/xdg || exit 1
|
||||
rm -rf /usr/share/applications/sabayon-*.desktop
|
||||
|
||||
mount -t proc proc /proc
|
||||
/lib/rc/bin/rc-depend -u
|
||||
|
||||
echo "Vacuum cleaning client db"
|
||||
rm /var/lib/entropy/client/database/*/sabayonlinux.org -rf
|
||||
rm /var/lib/entropy/client/database/*/sabayon-weekly -rf
|
||||
equo rescue vacuum
|
||||
|
||||
# cleanup log dir
|
||||
rm /var/lib/entropy/logs -rf
|
||||
|
||||
# Generate openrc cache
|
||||
touch /lib/rc/init.d/softlevel
|
||||
/etc/init.d/savecache start
|
||||
/etc/init.d/savecache zap
|
||||
|
||||
ldconfig
|
||||
ldconfig
|
||||
umount /proc
|
||||
|
||||
equo deptest --pretend
|
||||
emaint --fix world
|
||||
|
||||
# remove non-interactive settings
|
||||
rm /etc/env.d/00mcs-etp-noninteractive -f
|
||||
|
||||
rm -rf /var/lib/entropy/*cache*
|
||||
|
||||
13
scripts/3rdparty/remaster_mcs_pre.sh
vendored
13
scripts/3rdparty/remaster_mcs_pre.sh
vendored
@@ -1,13 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# call parent script
|
||||
/sabayon/scripts/remaster_pre.sh
|
||||
|
||||
# copy mcs data over
|
||||
mkdir -p "${CHROOT_DIR}/.mcs"
|
||||
cp /sabayon/remaster/mcs/* "${CHROOT_DIR}"/.mcs/ -Rap
|
||||
|
||||
# setup non-interactive mode
|
||||
echo "ETP_NONINTERACTIVE=1" > "${CHROOT_DIR}"/etc/env.d/00mcs-etp-noninteractive
|
||||
|
||||
exit 0
|
||||
Reference in New Issue
Block a user