diff options
author | Danct12 <danct12@disroot.org> | 2020-02-21 21:52:45 +0700 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-02-21 14:11:17 -0300 |
commit | b94680c47045c5341cb09867067098a02b00024e (patch) | |
tree | d8a8d9f47deab0d2312ec45d343cfa2fbaae3967 /testing/schroot/getent.patch | |
parent | 36e1ff18b4cab3b07307c1f87e37233549a19049 (diff) | |
download | aports-b94680c47045c5341cb09867067098a02b00024e.tar.bz2 aports-b94680c47045c5341cb09867067098a02b00024e.tar.xz |
testing/schroot: new aport
Signed-off-by: Danct12 <danct12@disroot.org>
Diffstat (limited to 'testing/schroot/getent.patch')
-rw-r--r-- | testing/schroot/getent.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/schroot/getent.patch b/testing/schroot/getent.patch new file mode 100644 index 0000000000..b89e63c1d4 --- /dev/null +++ b/testing/schroot/getent.patch @@ -0,0 +1,25 @@ +From 6ffdd152d3fb07921c02e739ce5b47d1e177e7e6 Mon Sep 17 00:00:00 2001 +From: Andrea Brancaleoni <miwaxe@gmail.com> +Date: Mon, 24 Aug 2015 18:39:16 +0200 +Subject: [PATCH] getent + +--- + etc/setup.d/20nssdatabases | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git etc/setup.d/20nssdatabases etc/setup.d/20nssdatabases +index 6f14c81..697bb1e 100755 +--- a/etc/setup.d/20nssdatabases ++++ b/etc/setup.d/20nssdatabases +@@ -29,7 +29,7 @@ set -e + dup_nss() + { + info "Copying $1 database to $2" +- getent "$1" > "$2" ++ getent "$1" > "$2" 2>/dev/null || cat "/etc/$1" > "$2" + } + + if [ $STAGE = "setup-start" ] || [ $STAGE = "setup-recover" ]; then +-- +2.5.0 + |