Add UIDS_AND_GIDS and global buildconf.

This commit is contained in:
Darren 'Tadgy' Austin 2022-09-07 14:03:30 +01:00
commit 91734b9455
2 changed files with 22 additions and 0 deletions

12
source/UIDS_AND_GIDS Normal file
View file

@ -0,0 +1,12 @@
UIDs and GIDs used by custom packages
=====================================
UID GID Name Note
----------------------------------------------------------------------------------------------------------------------------------------------------------------
34 34 spamd
35 35 exim
36 36 netdata
37 greylistd Uses group mail.
38 38 majordomo
40 kvm Deprecated.
79 79 logger Used by lumberjack.

10
source/buildconf Normal file
View file

@ -0,0 +1,10 @@
# Use ccache if available.
CCACHE="$(command -v ccache)"
[[ -n "$CCACHE" ]] && {
BUILD_ALTCC="$CCACHE gcc"
BUILD_ALTCXX="$CCACHE g++"
}
unset CCACHE
# Override default package store location.
PKG_STORE='/data/slackware/repo/$DIST_OS_ID-$DIST_OS_VERSION_ID'