14 lines
250 B
Text
14 lines
250 B
Text
|
#!/bin/sh
|
||
|
# Nico Schottelius
|
||
|
# cinit: install standard sub-configuration directories
|
||
|
# Date: 2005-08-07
|
||
|
#
|
||
|
|
||
|
. $(dirname $0)/cinit.build-env
|
||
|
|
||
|
for svc in $SERVICE_CATEGORIES; do
|
||
|
"$INSTALL_PROG" "$INSTALL_DIRECTORY" "${SERVICES}/${svc}"
|
||
|
done
|
||
|
|
||
|
exit 0
|