mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-08-05 17:07:49 +00:00
Linux-PAM: remove package
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
221dceb8b7
commit
83c8d682db
@ -1,27 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
. config/options $1
|
|
||||||
|
|
||||||
$SCRIPTS/build toolchain
|
|
||||||
$SCRIPTS/build flex
|
|
||||||
|
|
||||||
cd $PKG_BUILD
|
|
||||||
./configure --host=$TARGET_NAME \
|
|
||||||
--build=$HOST_NAME \
|
|
||||||
--prefix=/usr \
|
|
||||||
--libdir=/usr/lib \
|
|
||||||
--sysconfdir=/etc \
|
|
||||||
--sbindir=/lib/security \
|
|
||||||
--datadir=/usr/share \
|
|
||||||
--localstatedir=/var \
|
|
||||||
--disable-static \
|
|
||||||
--enable-shared \
|
|
||||||
--enable-read-both-confs \
|
|
||||||
--disable-cracklib \
|
|
||||||
--disable-audit \
|
|
||||||
--enable-db=no \
|
|
||||||
--disable-regenerate-docu \
|
|
||||||
|
|
||||||
make
|
|
||||||
|
|
||||||
$MAKEINSTALL
|
|
@ -1,12 +0,0 @@
|
|||||||
# Begin /etc/pam.d/system-auth
|
|
||||||
|
|
||||||
#
|
|
||||||
# default; standard UN*X access
|
|
||||||
#
|
|
||||||
|
|
||||||
auth required pam_unix.so nullok
|
|
||||||
account required pam_unix.so
|
|
||||||
session required pam_unix.so
|
|
||||||
password required pam_unix.so nullok
|
|
||||||
|
|
||||||
# End /etc/pam.d/system-auth
|
|
@ -1,12 +0,0 @@
|
|||||||
# Begin /etc/pam.d/system-auth
|
|
||||||
|
|
||||||
#
|
|
||||||
# default; standard UN*X access
|
|
||||||
#
|
|
||||||
|
|
||||||
auth required pam_unix.so nullok
|
|
||||||
account required pam_unix.so
|
|
||||||
session required pam_unix.so
|
|
||||||
password required pam_unix.so nullok
|
|
||||||
|
|
||||||
# End /etc/pam.d/system-auth
|
|
@ -1,12 +0,0 @@
|
|||||||
# Begin /etc/pam.d/system-auth
|
|
||||||
|
|
||||||
#
|
|
||||||
# default; standard UN*X access
|
|
||||||
#
|
|
||||||
|
|
||||||
auth required pam_unix.so nullok
|
|
||||||
account required pam_unix.so
|
|
||||||
session required pam_unix.so
|
|
||||||
password required pam_unix.so nullok
|
|
||||||
|
|
||||||
# End /etc/pam.d/system-auth
|
|
@ -1,40 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
. config/options $1
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/etc
|
|
||||||
cp -P $PKG_BUILD/modules/pam_env/environment $INSTALL/etc
|
|
||||||
# cp -P $PKG_BUILD/data/pam.conf $INSTALL/etc
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/etc/pam.d
|
|
||||||
cp -P $PKG_DIR/config/* $INSTALL/etc/pam.d
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/etc/security
|
|
||||||
cp -P $PKG_BUILD/modules/pam_access/access.conf $INSTALL/etc/security
|
|
||||||
cp -P $PKG_BUILD/modules/pam_group/group.conf $INSTALL/etc/security
|
|
||||||
cp -P $PKG_BUILD/modules/pam_limits/limits.conf $INSTALL/etc/security
|
|
||||||
cp -P $PKG_BUILD/modules/pam_env/pam_env.conf $INSTALL/etc/security
|
|
||||||
cp -P $PKG_BUILD/modules/pam_time/time.conf $INSTALL/etc/security
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/lib/security
|
|
||||||
cp -P $PKG_BUILD/modules/pam_mkhomedir/.libs/mkhomedir_helper $INSTALL/lib/security
|
|
||||||
# cp -P $PKG_BUILD/modules/pam_tally/pam_tally $INSTALL/lib/security
|
|
||||||
cp -P $PKG_BUILD/modules/pam_tally2/.libs/pam_tally2 $INSTALL/lib/security
|
|
||||||
cp -P $PKG_BUILD/modules/pam_unix/unix_chkpwd $INSTALL/lib/security
|
|
||||||
echo "chmod 4755 $INSTALL/lib/security/unix_chkpwd" >> $FAKEROOT_SCRIPT
|
|
||||||
cp -P $PKG_BUILD/modules/pam_unix/unix_update $INSTALL/lib/security
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/usr/lib
|
|
||||||
cp -P $PKG_BUILD/libpam/.libs/*.so* $INSTALL/usr/lib
|
|
||||||
cp -P $PKG_BUILD/libpam_misc/.libs/*.so* $INSTALL/usr/lib
|
|
||||||
rm -rf $INSTALL/usr/lib/libpam_misc.so*T
|
|
||||||
cp -P $PKG_BUILD/libpamc/.libs/*.so* $INSTALL/usr/lib
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/usr/lib/security
|
|
||||||
cp -P $PKG_BUILD/modules/*/.libs/*.so $INSTALL/usr/lib/security
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/usr/lib/security/pam_filter
|
|
||||||
cp -P $PKG_BUILD/modules/pam_filter/upperLOWER/.libs/upperLOWER $INSTALL/usr/lib/security/pam_filter
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/sbin
|
|
||||||
cp -P $PKG_BUILD/modules/pam_tally/pam_tally $INSTALL/sbin
|
|
@ -1,41 +0,0 @@
|
|||||||
Index: Linux-PAM-1.0.2/Makefile.in
|
|
||||||
===================================================================
|
|
||||||
--- Linux-PAM-1.0.2.orig/Makefile.in 2008-08-29 01:14:12.000000000 -0700
|
|
||||||
+++ Linux-PAM-1.0.2/Makefile.in 2009-09-04 01:06:22.571466501 -0700
|
|
||||||
@@ -71,8 +71,7 @@
|
|
||||||
distclean-recursive maintainer-clean-recursive
|
|
||||||
ETAGS = etags
|
|
||||||
CTAGS = ctags
|
|
||||||
-DIST_SUBDIRS = libpam tests libpamc libpam_misc modules po conf doc \
|
|
||||||
- examples xtests
|
|
||||||
+DIST_SUBDIRS = libpam libpamc libpam_misc modules po conf
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
distdir = $(PACKAGE)-$(VERSION)
|
|
||||||
top_distdir = $(distdir)
|
|
||||||
@@ -244,8 +243,8 @@
|
|
||||||
top_builddir = @top_builddir@
|
|
||||||
top_srcdir = @top_srcdir@
|
|
||||||
AUTOMAKE_OPTIONS = 1.9 gnu dist-bzip2 check-news
|
|
||||||
-@STATIC_MODULES_FALSE@SUBDIRS = libpam tests libpamc libpam_misc modules po conf doc examples xtests
|
|
||||||
-@STATIC_MODULES_TRUE@SUBDIRS = modules libpam libpamc libpam_misc tests po conf doc examples xtests
|
|
||||||
+@STATIC_MODULES_FALSE@SUBDIRS = libpam libpamc libpam_misc modules po conf
|
|
||||||
+@STATIC_MODULES_TRUE@SUBDIRS = modules libpam libpamc libpam_misc po conf
|
|
||||||
CLEANFILES = *~
|
|
||||||
M4_FILES = m4/codeset.m4 m4/gettext.m4 m4/glibc21.m4 m4/glibc2.m4 \
|
|
||||||
m4/iconv.m4 m4/intdiv0.m4 m4/intmax.m4 m4/inttypes_h.m4 \
|
|
||||||
Index: Linux-PAM-1.0.2/modules/pam_access/pam_access.c
|
|
||||||
===================================================================
|
|
||||||
Index: Linux-PAM-1.0.2/modules/pam_unix/Makefile.am
|
|
||||||
===================================================================
|
|
||||||
Index: Linux-PAM-1.0.2/modules/pam_unix/Makefile.in
|
|
||||||
===================================================================
|
|
||||||
Index: Linux-PAM-1.0.2/modules/pam_unix/pam_unix_passwd.c
|
|
||||||
===================================================================
|
|
||||||
Index: Linux-PAM-1.0.2/modules/pam_unix/support.c
|
|
||||||
===================================================================
|
|
||||||
Index: Linux-PAM-1.0.2/modules/pam_unix/yppasswd.h
|
|
||||||
===================================================================
|
|
||||||
Index: Linux-PAM-1.0.2/modules/pam_unix/yppasswd_xdr.c
|
|
||||||
===================================================================
|
|
||||||
Index: Linux-PAM-1.0.2/po/POTFILES.in
|
|
||||||
===================================================================
|
|
@ -1 +0,0 @@
|
|||||||
http://www.kernel.org/pub/linux/libs/pam/library/Linux-PAM-1.1.1.tar.bz2
|
|
Loading…
x
Reference in New Issue
Block a user