blob: 975203dc01713cbc2dd852e8770a724062736e78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/bash
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
source /sbin/functions.sh || exit 1
if [[ ${EUID} -ne 0 ]] ; then
eerror "$0: must be root."
exit 1
fi
usage() {
echo "usage: env-update.sh
note:
This utility generates /etc/profile.env and /etc/csh.env
from the contents of /etc/env.d/
"
exit 1
}
export SVCDIR=${svcdir}
# Only update if files have actually changed
if [[ $1 == "-u" ]] ; then
is_older_than "${svcdir}/envcache" /etc/env.d && exit 0
shift
fi
if [[ $# -ne 0 ]] ; then
usage
else
/bin/gawk \
-f /lib/rcscripts/awk/functions.awk \
-f /lib/rcscripts/awk/genenviron.awk
fi
# vim:ts=4
|