]> git.pld-linux.org Git - packages/kde4-kdebase.git/commitdiff
- drop obsolete files
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 5 Jul 2009 17:21:24 +0000 (17:21 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    kdebase-kdesktop.pam -> 1.4
    kdebase-kdm-np.pam -> 1.6
    kdebase-kdm.Xsession -> 1.9
    kdebase-kdm.init -> 1.11
    kdebase-kdm.pam -> 1.13

kdebase-kdesktop.pam [deleted file]
kdebase-kdm-np.pam [deleted file]
kdebase-kdm.Xsession [deleted file]
kdebase-kdm.init [deleted file]
kdebase-kdm.pam [deleted file]

diff --git a/kdebase-kdesktop.pam b/kdebase-kdesktop.pam
deleted file mode 100644 (file)
index 40bfa6f..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-#%PAM-1.0
-auth           include         system-auth
-account                include         system-auth
diff --git a/kdebase-kdm-np.pam b/kdebase-kdm-np.pam
deleted file mode 100644 (file)
index 31c44e8..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-#%PAM-1.0
-auth           required        pam_listfile.so item=user sense=deny file=/etc/security/blacklist onerr=succeed
-auth           required        pam_listfile.so item=user sense=deny file=/etc/security/blacklist.kdm onerr=succeed
-auth           required        pam_tally.so deny=0 file=/var/log/faillog onerr=succeed
-auth           required        pam_permit.so
-account                required        pam_shells.so
-account                required        pam_nologin.so
-account                required        pam_access.so
-account                include         system-auth
-password       include         system-auth
-session                optional        pam_keyinit.so force revoke
-session                include         system-auth
-session                optional        pam_console.so
diff --git a/kdebase-kdm.Xsession b/kdebase-kdm.Xsession
deleted file mode 100644 (file)
index 52cc604..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-
-# Make it login shell
-if [ "$HAVE_LOGIN_SHELL" != "yes" ]; then
-       export HAVE_LOGIN_SHELL=yes
-       case $SHELL in
-               */csh|*/tcsh)
-               # [t]cshrc is always sourced automatically.
-               # Note that sourcing csh.login after .cshrc is non-standard.
-               exec $SHELL -c "if (-f /etc/csh.login) source /etc/csh.login; if (-f ~/.login) source ~/.login; exec $0 $*"
-               ;;
-               *)
-               exec $SHELL -l $0 $*
-       esac
-fi
-unset HAVE_LOGIN_SHELL 
-
-# Call standard xinit actions
-. /etc/X11/xinit/xinitdefs
-
-case $1 in
-    failsafe)
-       exec xterm -geometry 80x24-0-0
-       ;;
-    ""|default)
-       # take default action
-       if [ -x "$HOME/.Xclients" ]; then
-           exec "$HOME/.Xclients"
-       else
-           exec /etc/X11/xinit/Xclients
-       fi
-       ;;
-    custom)
-       if [ -x "$HOME/.xsession" ]; then
-           exec "$HOME/.xsession"
-       else    
-           exec xmessage -center -buttons OK:0 -default OK \
-           "Sorry, $HOME/.xsession not found."
-       fi
-       ;;      
-    *)
-       exec /etc/X11/xinit/Xclients $1
-esac
diff --git a/kdebase-kdm.init b/kdebase-kdm.init
deleted file mode 100644 (file)
index 2d0c25d..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-#!/bin/sh
-#
-# kdm:         Starts the KDE Display Manager
-#
-# description: Starts and stops the KDE Display Manager at startup and \
-#              shutdown..
-#
-# chkconfig:   5 95 05
-#
-# probe:       true
-# hide:                true
-#
-# $Id$
-
-. /etc/rc.d/init.d/functions
-
-# Get service config
-if [ -f /etc/sysconfig/kdm ]; then
-       . /etc/sysconfig/kdm
-fi
-
-start() {
-       # Check if the service is already running?
-       if [ ! -f /var/lock/subsys/kdm ]; then
-               msg_starting "KDE Display Manager"
-               daemon /usr/bin/kdm
-               RETVAL=$?
-               [ $RETVAL -eq 0 ] && touch /var/lock/subsys/kdm
-       else
-               msg_already_running "KDE Display Manager"
-       fi
-}
-
-stop() {
-       # Check if the service is already running?
-       if [ -f /var/lock/subsys/kdm ]; then
-               msg_stopping "KDE Display Manager"
-               killproc kdm
-               rm -f /var/lock/subsys/kdm
-       else
-               msg_not_running "KDE Display Manager"
-       fi
-}
-
-condrestart() {
-       if [ -f /var/lock/subsys/kdm ]; then
-               stop
-               start
-       else
-               msg_not_running "KDE Display Manager"
-               RETVAL=$1
-       fi
-}
-
-RETVAL=0
-# See how we were called.
-case "$1" in
-  start)
-       start
-       ;;
-  stop)
-       stop
-       ;;
-  restart)
-       stop
-       start
-       ;;
-  try-restart)
-       condrestart 0
-       ;;
-  force-reload)
-       condrestart 7
-       ;;
-  status)
-       status kdm
-       exit $?
-       ;;
-  *)
-       msg_usage "$0 {start|stop|restart|try-restart|force-reload|status}"
-       exit 3
-esac
-
-exit $RETVAL
diff --git a/kdebase-kdm.pam b/kdebase-kdm.pam
deleted file mode 100644 (file)
index 0b96be1..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#%PAM-1.0
-auth           required        pam_listfile.so item=user sense=deny file=/etc/security/blacklist.kdm onerr=succeed
-auth           include         system-auth
-account                required        pam_shells.so
-account                required        pam_nologin.so
-account                required        pam_access.so
-account                include         system-auth
-password       include         system-auth
-session                optional        pam_keyinit.so force revoke
-session                include         system-auth
-session                optional        pam_console.so
This page took 0.058027 seconds and 4 git commands to generate.