diff options
Diffstat (limited to 'lang/bigloo/files/bigloo.sh')
-rw-r--r-- | lang/bigloo/files/bigloo.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lang/bigloo/files/bigloo.sh b/lang/bigloo/files/bigloo.sh new file mode 100644 index 0000000..0d27a0a --- /dev/null +++ b/lang/bigloo/files/bigloo.sh @@ -0,0 +1,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 |