#!/bin/sh # Reading system configuration informations, functions and package versions. source ../sysinfos source ../functions source ../packages-list # Common installation script ./cis-gnome ${*} # Custom post-installation install -v -m755 -d /etc/gnome/${GNOME2_VER}/gconf/gconf.xml.system && # Configure D-Bus so that it can search for GNOME installed .conf files # (This is assuming that system-local.conf does not exist yet. If it does, # then you will need to merge in the changes): dbusfile=/etc/dbus-1/system-local.conf && if [ -f ${dbusfile} ]; then cat ${dbusfile} >> ${dbusfile}.old echo "Warning, file ${dbusfile} already exists," echo "appending content to \"${dbusfile}.old\"" fi && cat > ${dbusfile} << "EOF" && EOF echo " " >> ${dbusfile} && echo " /etc/gnome/${GNOME2_VER}/dbus-1/system.d" >> ${dbusfile} && echo "" >> ${dbusfile} exit $?