Исправлены скрипты входа в сеанс для изменённого xdm login

develop 3.3.1.2
Mike Khiretskiy 9 years ago
parent 2d262a73d7
commit dcfd826d43

@ -1,5 +1,5 @@
#! /bin/sh #! /bin/sh
# Copyright 2010 Calculate Ltd. http://www.calculate-linux.org # Copyright 2010-2015 Calculate Ltd. http://www.calculate-linux.org
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
@ -13,21 +13,19 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
/usr/sbin/env-update run_script() {
source /etc/profile if [ -e '/usr/sbin/cl-client-sync-login' ];
source /usr/share/calculate/xdm/functions then
if [[ "${DOMAIN_USER}" == "on" ]]
if [ -e '/usr/sbin/cl-client-sync-login' ]; then
then ERRORLOG=`/usr/sbin/cl-client-sync-login --gui-progress --gui-warning $USER 2>&1`
if [[ "${DOMAIN_USER}" == "on" ]] # log error
then if [ "$?" -gt "0" ];
ERRORLOG=`/usr/sbin/cl-client-sync-login --gui-progress --gui-warning $USER 2>&1` then
# log error echo "$ERRORLOG" >> $FILE_LOG
if [ "$?" -gt "0" ]; return 1
then fi
echo "$ERRORLOG" >> $FILE_LOG fi
exit 1 fi
fi return 0
fi }
fi
exit 0

@ -1,5 +1,5 @@
#! /bin/sh #! /bin/sh
# Copyright 2013 Calculate Ltd. http://www.calculate-linux.org # Copyright 2013-2015 Calculate Ltd. http://www.calculate-linux.org
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
@ -13,13 +13,10 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
/usr/sbin/env-update run_script() {
source /etc/profile if [[ "${DOMAIN_USER}" == "on" ]]
source /usr/share/calculate/xdm/functions then
/usr/sbin/cl-client-resume-remount ${USER} &
if [[ "${DOMAIN_USER}" == "on" ]] fi
then return 0
/usr/sbin/cl-client-resume-remount ${USER} & }
fi
exit 0

@ -1,5 +1,5 @@
#! /bin/sh #! /bin/sh
# Copyright 2010 Calculate Ltd. http://www.calculate-linux.org # Copyright 2010-2015 Calculate Ltd. http://www.calculate-linux.org
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
@ -13,21 +13,19 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
/usr/sbin/env-update run_script() {
source /etc/profile if [ -e '/usr/sbin/cl-client-sync-logout' ];
source /usr/share/calculate/xdm/functions then
if [[ "${DOMAIN_USER}" == "on" ]]
if [ -e '/usr/sbin/cl-client-sync-logout' ]; then
then ERRORLOG=`/usr/sbin/cl-client-sync-logout $USER 2>&1`
if [[ "${DOMAIN_USER}" == "on" ]] # log errors
then if [ "$?" -gt "0" ];
ERRORLOG=`/usr/sbin/cl-client-sync-logout $USER 2>&1` then
# log errors echo "$ERRORLOG" >> $FILE_LOG
if [ "$?" -gt "0" ]; return 1
then fi
echo "$ERRORLOG" >> $FILE_LOG fi
exit 1 fi
fi return 0
fi }
fi
exit 0

@ -1,5 +1,5 @@
#! /bin/sh #! /bin/sh
# Copyright 2013 Calculate Ltd. http://www.calculate-linux.org # Copyright 2013-2015 Calculate Ltd. http://www.calculate-linux.org
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
@ -13,13 +13,11 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
/usr/sbin/env-update run_script() {
source /etc/profile if [[ "${DOMAIN_USER}" == "on" ]]
source /usr/share/calculate/xdm/functions then
pkill -f "cl-client-resume-remount ${USER}"
fi
if [[ "${DOMAIN_USER}" == "on" ]] return 0
then }
pkill -f "cl-client-resume-remount ${USER}"
fi
exit 0

Loading…
Cancel
Save