Newer
Older

Eric Vidal
committed
#!@BINDIR@/bash
# All rights reserved.
#
# This file is part of Obarun. It is subject to the license terms in
# the LICENSE file found in the top-level directory of this
# distribution and at https://github.com/Obarun/obarun-install-themes/LICENSE
# This file may not be copied, modified, propagated, or distributed
# except according to the terms contained in the LICENSE file.
for list in /tmp/obarun-install-tmp/install.conf /usr/lib/obarun/util.sh; do
if [[ -f "${list}" ]]; then
source "${list}"
else
exit
fi
done
unset list
}
sourcing
custo_once() {
_tmp="/tmp/obarun-install-tmp"
if [[ ! -d $_tmp ]]; then
mkdir -p -m0755 $_tmp || die "Impossible to create $_tmp"
fi
if [[ ! -e $_tmp/customize.${cmd} ]]; then
"${cmd}" || die "Cannot execute $_"
touch $_tmp/customize.${cmd}
else
return
fi
unset _tmp
}
############################## only modifie this script after this line ############################
create_log_user(){
gpasswd -a "$NEWUSER" log
}
custo_once create_log_user
## Configure S6 service
config_s6(){
cp -ra /etc/s6-serv/available/classic/syslogds6 /etc/s6-serv/enabled/classic/
out_action "Enable dbus service"
cp -ra /etc/s6-serv/available/classic/dbus /etc/s6-serv/enabled/classic/
out_action "Enable consolekit service"
cp -ra /etc/s6-serv/available/classic/consolekit /etc/s6-serv/enabled/classic/
out_action "Enable ntpd service"
cp -ra /etc/s6-serv/available/classic/ntpd /etc/s6-serv/enabled/classic/
out_action "Enable cgmanager service"
cp -ra /etc/s6-serv/available/classic/cgmanager /etc/s6-serv/enabled/classic/
s6opts add live bundle-Connman bundle-Wpa-supplicant
out_action "Make Live as current database"
rm /etc/s6-serv/enabled/rc/compiled/current
ln -sf /etc/s6-serv/enabled/rc/compiled/Live /etc/s6-serv/enabled/rc/compiled/current
out_action "Create directories for user supervision tree"
su "${NEWUSER}" -c "s6opts user"
out_action "Enable dbus service for ${NEWUSER} user"
su "${NEWUSER}" -c "cp -ra /etc/s6-serv/available/user/classic/dbus /home/${NEWUSER}/service/enabled/classic/"
out_action "Create ${NEWUSER} log directory for dbus"
su "${NEWUSER}" -c "s6opts checklog dbus"