mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-19 05:21:23 +02:00
sys-apps/shadow: Apply Flatcar modifications to shadow-4.13
- Carry over our custom tmpfiles and securetty files - Remove /etc files and install them to /usr, use tmpfiles - Switch /etc/login.defs edits to /usr/share/shadow/login.defs - Drop moving passwd out of /usr since we don't have split-usr - Drop pkg_postinst
This commit is contained in:
parent
5a947a7afb
commit
87dca7c2fd
@ -7,8 +7,11 @@ EAPI=8
|
|||||||
# official. Don't keyword the pre-releases!
|
# official. Don't keyword the pre-releases!
|
||||||
# Check https://github.com/shadow-maint/shadow/releases.
|
# Check https://github.com/shadow-maint/shadow/releases.
|
||||||
|
|
||||||
|
# Flatcar:
|
||||||
|
TMPFILES_OPTIONAL=1
|
||||||
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/sergehallyn.asc
|
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/sergehallyn.asc
|
||||||
inherit libtool pam verify-sig
|
# Flatcar: install systemd units and tmpfiles
|
||||||
|
inherit libtool pam verify-sig systemd tmpfiles
|
||||||
|
|
||||||
DESCRIPTION="Utilities to deal with user accounts"
|
DESCRIPTION="Utilities to deal with user accounts"
|
||||||
HOMEPAGE="https://github.com/shadow-maint/shadow"
|
HOMEPAGE="https://github.com/shadow-maint/shadow"
|
||||||
@ -102,19 +105,20 @@ src_configure() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
set_login_opt() {
|
set_login_opt() {
|
||||||
|
# Flatcar: /etc/login.defs becomes /usr/share/shadow/login.defs
|
||||||
local comment="" opt=${1} val=${2}
|
local comment="" opt=${1} val=${2}
|
||||||
if [[ -z ${val} ]]; then
|
if [[ -z ${val} ]]; then
|
||||||
comment="#"
|
comment="#"
|
||||||
sed -i \
|
sed -i \
|
||||||
-e "/^${opt}\>/s:^:#:" \
|
-e "/^${opt}\>/s:^:#:" \
|
||||||
"${ED}"/etc/login.defs || die
|
"${ED}"/usr/share/shadow/login.defs || die
|
||||||
else
|
else
|
||||||
sed -i -r \
|
sed -i -r \
|
||||||
-e "/^#?${opt}\>/s:.*:${opt} ${val}:" \
|
-e "/^#?${opt}\>/s:.*:${opt} ${val}:" \
|
||||||
"${ED}"/etc/login.defs
|
"${ED}"/usr/share/shadow/login.defs
|
||||||
fi
|
fi
|
||||||
local res=$(grep "^${comment}${opt}\>" "${ED}"/etc/login.defs)
|
local res=$(grep "^${comment}${opt}\>" "${ED}"/usr/share/shadow/login.defs)
|
||||||
einfo "${res:-Unable to find ${opt} in /etc/login.defs}"
|
einfo "${res:-Unable to find ${opt} in /usr/share/shadow/login.defs}"
|
||||||
}
|
}
|
||||||
|
|
||||||
src_install() {
|
src_install() {
|
||||||
@ -125,29 +129,43 @@ src_install() {
|
|||||||
|
|
||||||
find "${ED}" -name '*.la' -type f -delete || die
|
find "${ED}" -name '*.la' -type f -delete || die
|
||||||
|
|
||||||
insinto /etc
|
# Flatcar:
|
||||||
|
# Remove files from /etc, they will be symlinks to /usr instead.
|
||||||
|
rm -f "${ED}"/etc/{limits,login.access,login.defs,securetty,default/useradd}
|
||||||
|
|
||||||
|
# CoreOS: break shadow.conf into two files so that we only have to apply
|
||||||
|
# etc-shadow.conf in the initrd.
|
||||||
|
dotmpfiles "${FILESDIR}"/tmpfiles.d/etc-shadow.conf
|
||||||
|
dotmpfiles "${FILESDIR}"/tmpfiles.d/var-shadow.conf
|
||||||
|
# Package the symlinks for the SDK and containers.
|
||||||
|
systemd-tmpfiles --create --root="${ED}" "${FILESDIR}"/tmpfiles.d/*
|
||||||
|
|
||||||
|
insinto /usr/share/shadow
|
||||||
if ! use pam ; then
|
if ! use pam ; then
|
||||||
insopts -m0600
|
insopts -m0600
|
||||||
doins etc/login.access etc/limits
|
doins etc/login.access etc/limits
|
||||||
fi
|
fi
|
||||||
|
# Flatcar:
|
||||||
|
# Using a securetty with devfs device names added
|
||||||
|
# (compat names kept for non-devfs compatibility)
|
||||||
|
insopts -m0600 ; doins "${FILESDIR}"/securetty
|
||||||
|
# Output arch-specific cruft
|
||||||
|
local devs
|
||||||
|
case $(tc-arch) in
|
||||||
|
ppc*) devs="hvc0 hvsi0 ttyPSC0";;
|
||||||
|
hppa) devs="ttyB0";;
|
||||||
|
arm) devs="ttyFB0 ttySAC0 ttySAC1 ttySAC2 ttySAC3 ttymxc0 ttymxc1 ttymxc2 ttymxc3 ttyO0 ttyO1 ttyO2";;
|
||||||
|
sh) devs="ttySC0 ttySC1";;
|
||||||
|
amd64|x86) devs="hvc0";;
|
||||||
|
esac
|
||||||
|
if [[ -n ${devs} ]]; then
|
||||||
|
printf '%s\n' ${devs} >> "${ED}"/usr/share/shadow/securetty
|
||||||
|
fi
|
||||||
|
|
||||||
# needed for 'useradd -D'
|
# needed for 'useradd -D'
|
||||||
insinto /etc/default
|
|
||||||
insopts -m0600
|
insopts -m0600
|
||||||
doins "${FILESDIR}"/default/useradd
|
doins "${FILESDIR}"/default/useradd
|
||||||
|
|
||||||
if use split-usr ; then
|
|
||||||
# move passwd to / to help recover broke systems #64441
|
|
||||||
# We cannot simply remove this or else net-misc/scponly
|
|
||||||
# and other tools will break because of hardcoded passwd
|
|
||||||
# location
|
|
||||||
dodir /bin
|
|
||||||
mv "${ED}"/usr/bin/passwd "${ED}"/bin/ || die
|
|
||||||
dosym ../../bin/passwd /usr/bin/passwd
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd "${S}" || die
|
|
||||||
insinto /etc
|
|
||||||
insopts -m0644
|
insopts -m0644
|
||||||
newins etc/login.defs login.defs
|
newins etc/login.defs login.defs
|
||||||
|
|
||||||
@ -201,7 +219,7 @@ src_install() {
|
|||||||
-e 'b exit' \
|
-e 'b exit' \
|
||||||
-e ': pamnote; i# NOTE: This setting should be configured via /etc/pam.d/ and not in this file.' \
|
-e ': pamnote; i# NOTE: This setting should be configured via /etc/pam.d/ and not in this file.' \
|
||||||
-e ': exit' \
|
-e ': exit' \
|
||||||
"${ED}"/etc/login.defs || die
|
"${ED}"/usr/share/shadow/login.defs || die
|
||||||
|
|
||||||
# Remove manpages that pam will install for us
|
# Remove manpages that pam will install for us
|
||||||
# and/or don't apply when using pam
|
# and/or don't apply when using pam
|
||||||
|
Loading…
x
Reference in New Issue
Block a user