- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
21 lines
698 B
Bash
21 lines
698 B
Bash
#!/bin/sh
|
|
|
|
ALIASESDB_STAMP=/var/lib/misc/postfix.aliasesdb-stamp
|
|
|
|
make_aliasesdb() {
|
|
if [ "$(/usr/sbin/postconf -h alias_database)" = "hash:/etc/aliases" ]
|
|
then
|
|
# /etc/aliases.db may be used by other MTA, make sure nothing
|
|
# has touched it since our last newaliases call
|
|
[ /etc/aliases -nt /etc/aliases.db ] ||
|
|
[ "$ALIASESDB_STAMP" -nt /etc/aliases.db ] ||
|
|
[ "$ALIASESDB_STAMP" -ot /etc/aliases.db ] || return 0
|
|
/usr/bin/newaliases
|
|
touch -r /etc/aliases.db "$ALIASESDB_STAMP"
|
|
else
|
|
/usr/bin/newaliases
|
|
fi
|
|
}
|
|
|
|
make_aliasesdb
|