diff options
| author | Daniel Golle <daniel@makrotopia.org> | 2022-05-02 19:58:56 +0100 |
|---|---|---|
| committer | Daniel Golle <daniel@makrotopia.org> | 2022-05-02 19:59:58 +0100 |
| commit | 6d7272852e0b2634b2fa93a131ea8659ec87f079 (patch) | |
| tree | 05c2e8f1832137febca6ac0d9f349b7b09c587a5 | |
| parent | 0276fab64933dc42bad865974dc224e2672f99fe (diff) | |
| download | upstream-6d7272852e0b2634b2fa93a131ea8659ec87f079.tar.gz upstream-6d7272852e0b2634b2fa93a131ea8659ec87f079.tar.bz2 upstream-6d7272852e0b2634b2fa93a131ea8659ec87f079.zip | |
base-files: add missing $IPKG_INSTROOT to restorecon call
Update to overlooked v2 version of Dominick Grift's patch.
Fixes: 5109bd164c ("base-files: address sed in-place without SELinux awareness")
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
| -rw-r--r-- | package/base-files/files/lib/functions.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/base-files/files/lib/functions.sh b/package/base-files/files/lib/functions.sh index 9db0871d6cc..da2dd5b3464 100644 --- a/package/base-files/files/lib/functions.sh +++ b/package/base-files/files/lib/functions.sh @@ -386,7 +386,9 @@ group_add_user() { echo "$grp" | grep -q ":$" && delim="" [ -n "$IPKG_INSTROOT" ] || lock /var/lock/passwd sed -i "s/$grp/$grp$delim$2/g" ${IPKG_INSTROOT}/etc/group - selinuxenabled 2>/dev/null && restorecon /etc/group + if [ -x /usr/sbin/selinuxenabled ] && selinuxenabled; then + selinuxenabled 2>/dev/null && restorecon ${IPKG_INSTROOT}/etc/group + fi [ -n "$IPKG_INSTROOT" ] || lock -u /var/lock/passwd } |
