mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 20:07:50 -04:00
20 lines
328 B
Bash
20 lines
328 B
Bash
#
|
|
# Wrapper for the SunOS builtin krb5-config, which does not accept all of the
|
|
# 'libraries' arguments that the standard MIT krb5-config does.
|
|
#
|
|
|
|
args=
|
|
for arg; do
|
|
case "${arg}" in
|
|
# Unsupported arguments
|
|
gssapi|kadm-client|kadm-server|kdb)
|
|
continue
|
|
;;
|
|
*)
|
|
args="${args} ${arg}"
|
|
;;
|
|
esac
|
|
done
|
|
|
|
@KRB5_CONFIG@ ${args}
|