Newer
Older

Eric Vidal
committed
#!@BINDIR@/bash

Eric Vidal
committed
# 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

Eric Vidal
committed
# This file may not be copied, modified, propagated, or distributed
# except according to the terms contained in the LICENSE file.
local list
for list in /tmp/obarun-install-tmp/install.conf /usr/lib/obarun/util.sh; do
if [[ -f "${list}" ]]; then
source "${list}"
else
out_error "Missing file : ${list}"
exit
fi
done
unset list
local _tmp cmd
cmd="${1}"
_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
unset _tmp
}
############################## only modifie this script after this line ############################
out_action "add ${NEWUSER} at log group"
gpasswd -a "$NEWUSER" log
# creation of the live/ to avoid crash
mkdir -p -m1777 /run/66
out_action "Create and enable tree [system]"
66-enable -v3 -t system ntpd sshd
out_action "Create, enable and set flag default on tree [desktop]"
out_action "Enable dbus,networkmanager,wpa_supplicant services on tree [desktop]"
66-enable -v3 -t desktop dbus networkmanager wpa_supplicant
# avoid permissions access issue
chown -R ${NEWUSER}:users /run/66
out_action "Create tree graphics for ${NEWUSER}, enables and makes it current"
su "${NEWUSER}" -c "66-tree -v3 -Ecn graphics"
out_action "Enable dbus-user and xdg-user-dirs on tree graphics"
su "${NEWUSER}" -c "66-enable -v3 -t graphics dbus-user xdg-user-dirs"
rm -rf /run/66