aboutsummaryrefslogtreecommitdiffstats
path: root/lang/bigloo/files/bigloo.sh
blob: 0d27a0a84d567a4b8dbdffc68d8618b4a553b391 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

case "$1" in
    start)
        /sbin/ldconfig -m %%PREFIX%%/lib/bigloo/%%BIGLOO_VERSION%%
        ;;
    stop)
        ;;
    *)
        echo ""
        echo "Usage: `basename $0` { start | stop }"
        echo ""
        exit 64
        ;;
esac