Magellan Linux

Contents of /trunk/core/shadow/shadow-4.13-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33584 - (show annotations) (download)
Thu Aug 10 11:07:46 2023 UTC (13 months, 2 weeks ago) by niro
File size: 4580 byte(s)
-updated pamd files
1 # $Id$
2
3 PNAME="shadow"
4 PVER="4.13"
5 PBUILD="r2"
6
7 PCAT="sys-apps"
8
9 DESCRIPTION="Utilities to deal with user accounts, with pam support."
10 HOMEPAGE="https://github.com/shadow-maint/shadow/"
11
12 DEPEND=">= virtual/glibc
13 >= sys-apps/base-files-0.7
14 >= app-shells/bash-5
15 >= sys-libs/pam-1.1
16 >= sys-libs/readline-8.2
17 >= sys-libs/libxcrypt-4.4
18 >= sys-apps/coreutils-9.3"
19
20 SDEPEND=">= sys-dev/autoconf-5
21 >= sys-dev/automake-4
22 >= sys-dev/libtool-2.4"
23
24 SRCFILE="${PNAME}-${PVER}.tar.xz"
25 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
26
27 sminclude mtools
28
29 PAMD_CHAGE_REV=1.3
30 PAMD_LOGIN_REV=1.4
31 PAMD_SU_REV=1.3
32
33 SRC_URI=(
34 https://github.com/shadow-maint/${PNAME}/releases/download/${PVER}/${SRCFILE}
35 mirror://${PNAME}/${SRCFILE}
36 mirror://${PNAME}/pamd-systemauth/chage-${PAMD_CHAGE_REV}
37 mirror://${PNAME}/pamd-systemauth/login-${PAMD_LOGIN_REV}
38 mirror://${PNAME}/pamd-systemauth/su-${PAMD_SU_REV}
39 mirror://${PNAME}/pamd-systemauth/passwd
40 )
41
42 UP2DATE="updatecmd ${HOMEPAGE} | grep 'New release' | sed 's/.*: \(.*\).*/\1/;q'"
43
44 src_prepare()
45 {
46 munpack ${SRCFILE} || die
47 cd ${SRCDIR}
48
49 # do not build 'groups'; coreutils provide a better version
50 sed -i 's/groups$(EXEEXT) //' src/Makefile.in || die
51 sed -i '/groups/d' man/Makefile.in || die
52 }
53
54 src_compile()
55 {
56 cd ${SRCDIR}
57
58 # configures shadow with pam
59 mconfigure \
60 --bindir=/usr/bin \
61 --sbindir=/usr/sbin \
62 --enable-shared \
63 --with-libpam \
64 --with-libbcrypt \
65 --with-libyescrypt \
66 --enable-nls \
67 --without-selinux \
68 --with-group-name-max-length=32 \
69 || die
70
71 mmake || die
72 }
73
74 src_install()
75 {
76 cd ${SRCDIR}
77
78 # added exec_prefix for better bin location
79 mmake DESTDIR=${BINDIR} install || die
80
81 minstalletc etc/login.access login.access || die
82
83 # install pam related configuration files
84 minstallpam login-${PAMD_LOGIN_REV} login || die
85 minstallpam su-${PAMD_SU_REV} su || die
86 local i
87 for i in chgpasswd chpasswd passwd
88 do
89 minstallpam passwd ${i} || die
90 done
91 for i in chage chfn chsh \
92 groupadd groupdel groupmems groupmod \
93 newusers useradd userdel usermod
94 do
95 minstallpam chage-${PAMD_CHAGE_REV} ${i} || die
96 done
97
98 # disable these checks as pam controls them now
99 sed -e "s/^DIALUPS_CHECK_ENAB/# &/" \
100 -e "s/^LASTLOG_ENAB/# &/" \
101 -e "s/^MAIL_CHECK_ENAB/# &/" \
102 -e "s/^PORTTIME_CHECKS_ENAB/# &/" \
103 -e "s/^CONSOLE/# &/" \
104 -e "s/^MOTD_FILE/# &/" \
105 -e "s/^NOLOGINS_FILE/# &/" \
106 -e "s/^PASS_MIN_LEN/# &/" \
107 -e "s/^SU_WHEEL_ONLY/# &/" \
108 -e "s/^CONSOLE_GROUPS/# &/" \
109 -e "s/^ENVIRON_FILE/# &/" \
110 -e "s/^OBSCURE_CHECKS_ENAB/# &/" \
111 -e "s/^CRACKLIB_DICTPATH/# &/" \
112 -e "s/^PASS_CHANGE_TRIES/# &/" \
113 -e "s/^PASS_ALWAYS_WARN/# &/" \
114 -e "s/^FAILLOG_ENAB/# &/" \
115 -e "s/^QUOTAS_ENAB/# &/" \
116 -e "s/^FTMP_FILE/# &/" \
117 -e "s/^ENV_HZ/# &/" \
118 -e "s/^CHFN_AUTH/# &/" \
119 etc/login.defs > ${BINDIR}/etc/login.defs || die
120
121 # fix some pathes in login.defs
122 # md5crypt is also controlled by pam !
123 sed -i -e "s/^MD5_CRYPT_ENAB/# &/" \
124 -e 's%/var/spool/mail%/var/mail%' \
125 -e 's@DICTPATH.*@DICTPATH\t/lib/cracklib/pw_dict@' \
126 ${BINDIR}/etc/login.defs || die
127
128 # remove /bin adn /sbin from path, as these are symlinks
129 sed -i '/PATH=/{s@/sbin:@@;s@/bin:@@}' ${BINDIR}/etc/login.defs || die
130
131 # use much secure yescrypt
132 sed -i 's:#ENCRYPT_METHOD DES:ENCRYPT_METHOD YESCRYPT:' ${BINDIR}/etc/login.defs || die
133
134 # generate useradd default settings file
135 minstalldir /etc/default || die
136 cat > ${BINDIR}/etc/default/useradd << EOF
137 # The default group for users
138 GROUP=users
139
140 # The default home directory.
141 HOME=/home
142
143 # Number of days after a password expires after the account was disabled
144 INACTIVE=-1
145
146 # Default account expire date in days
147 EXPIRE=
148
149 # The default login shell
150 SHELL=/bin/bash
151
152 # Location of user skeleton files
153 SKEL=/etc/skel
154
155 # Defines wether a mail spool should be created while creating an account
156 CREATE_MAIL_SPOOL=no
157 EOF
158 }
159
160 postinstall()
161 {
162 if [[ -z ${MROOT} ]] || [[ ${MROOT} = / ]]
163 then
164 /usr/sbin/pwconv
165 /usr/sbin/grpconv
166 elif [[ -x $(type -P chroot) ]] && [[ -d ${MROOT} ]]
167 then
168 chroot ${MROOT} /usr/sbin/pwconv || die
169 chroot ${MROOT} /usr/sbin/grpconv || die
170 else
171 echo
172 echo "pwconv and grpconv could not run in MROOT='${MROOT}'."
173 echo "PAM is not usable without any shadow/gshadow files."
174 echo "Please chroot in your systemroot and run them by hand."
175 echo
176 fi
177
178 # pam handles limits from now on
179 if [[ -f ${MROOT}/etc/limits ]]
180 then
181 echo
182 echo "/etc/limits found and will be removed!"
183 echo "PAM handles all system limitations from now on."
184 echo "Please edit /etc/security/limits.conf accordingly."
185 echo
186 rm ${MROOT}/etc/limits
187 fi
188 }