diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | NEWS | 4 | ||||
-rwxr-xr-x | profile.d/xhost.csh | 11 | ||||
-rwxr-xr-x | profile.d/xhost.sh | 9 |
4 files changed, 6 insertions, 22 deletions
@@ -1,9 +1,9 @@ PACKAGE = setup -VERSION = 2.7.9 +VERSION = 2.7.10 SVNPATH = svn+ssh://svn.mandriva.com/svn/soft/$(PACKAGE) LIST = csh.cshrc csh.login host.conf hosts.allow hosts.deny inputrc \ - motd printcap profile.d protocols securetty services shells profile \ + motd printcap protocols securetty services shells profile \ filesystems fstab resolv.conf hosts subdir = passgrp utils man @@ -1,3 +1,7 @@ +2007-12-12 Guillaume Rousse <guillomovitch@mandriva.org> 2.7.10 + + * drop xhost profile scriptlets, they belong to xhost + 2007-08-11 Guillaume Rousse <guillomovitch@mandriva.org> 2.7.9 * add iprop service diff --git a/profile.d/xhost.csh b/profile.d/xhost.csh deleted file mode 100755 index 948e617..0000000 --- a/profile.d/xhost.csh +++ /dev/null @@ -1,11 +0,0 @@ -# Export Xauthority for users not for root. - -if ($?DISPLAY) then - if (! $?SSH_TTY) then - if ( `id -u` >= 14 ) then - if (! $?XAUTHORITY) then - setenv XAUTHORITY $HOME/.Xauthority - endif - endif - endif -endif diff --git a/profile.d/xhost.sh b/profile.d/xhost.sh deleted file mode 100755 index 04bb7ee..0000000 --- a/profile.d/xhost.sh +++ /dev/null @@ -1,9 +0,0 @@ -# Export Xauthority for users not for root. - -if [ ! -z "$DISPLAY" -a -z "$SSH_TTY" ];then - if [ "`id -u`" -gt 14 ];then - if [ -z $XAUTHORITY ];then - export XAUTHORITY=$HOME/.Xauthority - fi - fi -fi |