|
|
|
@ -3,13 +3,21 @@
|
|
|
|
|
case "$1" in
|
|
|
|
|
|
|
|
|
|
configure)
|
|
|
|
|
[ -d /root/.trinity/share/config ] ||
|
|
|
|
|
mkdir -p /root/.trinity/share/config
|
|
|
|
|
|
|
|
|
|
if [ ! -f /root/.trinity/share/config/kdeglobals ]; then
|
|
|
|
|
RELEASE_VERSION="$(/opt/trinity/bin/tde-config --version | sed -n 's|^TDE: ||p')"
|
|
|
|
|
/opt/trinity/bin/kwriteconfig --file /root/.trinity/share/config/kdeglobals \
|
|
|
|
|
--group "Release Notes" \
|
|
|
|
|
--key "$RELEASE_VERSION" \
|
|
|
|
|
--type bool "true"
|
|
|
|
|
fi
|
|
|
|
|
if [ ! -f /root/.trinity/share/config/kpersonalizerrc ]; then
|
|
|
|
|
[ -d /root/.trinity/share/config ] ||
|
|
|
|
|
mkdir -p /root/.trinity/share/config
|
|
|
|
|
cat >/root/.trinity/share/config/kpersonalizerrc <<kpersonalizerrc
|
|
|
|
|
[General]
|
|
|
|
|
FirstLogin=false
|
|
|
|
|
kpersonalizerrc
|
|
|
|
|
/opt/trinity/bin/kwriteconfig --file /root/.trinity/share/config/kpersonalizerrc \
|
|
|
|
|
--group "General" \
|
|
|
|
|
--key "FirstLogin" \
|
|
|
|
|
--type bool "false"
|
|
|
|
|
fi
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|