When I put the lines in the x2gostartagent script
after the
XAUTHORITY=${XAUTHORITY:-"$HOME/.Xauthority"}
line, the permissions will be fixed on login and not on logout. Unfortunately, restorcon sets the permissions to system_u:object_r:default_t:s0 and this does not work on my system. Instead of fixing the selinux .Xauthority permissions, the file could also be deleted on login, if it existed. Something like:
if test -f $HOME/.Xauthority then rm $HOME/.Xauthority fi
But it could also be, that my selinux system is misconfigured in some strange way, so that other people, who run the system, don't have this problem.
Frank
On 03/01/2014 12:07 AM, Orion Poplawski wrote:
On 02/28/2014 05:15 AM, Frank Knoben wrote:
Hi Mike,
what about the following solution / proposal for the x2goruncommand script:
.... # run logout scripts
FIX_XAUTH=
ls -Z $HOME/.Xauthority | egrep default_t
if test -n $FIX_AUTH then /usr/bin/chcon unconfined_u:object_r:xauth_home_t:s0 $HOME/.Xauthority fiI would suggest using restorecon to set the label.