summaryrefslogtreecommitdiff
path: root/sys-apps/config-site/files/config.site.in
blob: 1e732cf28aaa4032be185ca8e5ef41d4cc23dd92 (plain)
1
2
3
4
5
6
7
8
9
10
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

for script in "@datarootdir@/config.site.d"/*.conf; do
	test -f "${script}" || continue
	test -r "${script}" || continue
	echo "${0##*/}: loading site script ${script}"
	. "${script}" || break
done
unset script