add cinit-0.3pre15

Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
This commit is contained in:
Nico Schottelius 2009-09-23 08:01:33 +02:00
commit 440caeb555
1013 changed files with 99995 additions and 0 deletions

View file

@ -0,0 +1,20 @@
#!/bin/sh
# Nico Schottelius, 2006-07-28
#
# cinit: configure the ipc method to use
#
HIER=$(dirname $0)
DDIR=$HIER/../../src/ipc
DFILE=${DDIR}/current
IPC_METHOD=$(head -n 1 "$HIER/../../conf/ipc_method")
echo "Configure: IPC: Using \"$IPC_METHOD\" as IPC method"
# always remove link before, as ln seems to be broken
# Doing ln -sf src/ipc/$method current twice, will create the file
# "current" _BELOW_ src/ipc/$method and not overwrite the link
# src/ipc/current
rm -f "${DFILE}"
ln -sf "${IPC_METHOD}" "${DFILE}"