]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - dist/slc/rpm/etc/init.d/slc
Remove Maven
[gpl/argeo-slc.git] / dist / slc / rpm / etc / init.d / slc
diff --git a/dist/slc/rpm/etc/init.d/slc b/dist/slc/rpm/etc/init.d/slc
deleted file mode 100644 (file)
index ef7534e..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/bash
-#
-# slc  Argeo SLC
-#
-# chkconfig: 3 92 92
-# description: Argeo SLC (http://www.argeo.org)
-
-# Source function library.
-. /etc/osgiboot/osgi-service-init-functions.sh
-
-# Application id (must be in line with header)
-APP=slc
-
-# main
-case "$1" in
-  start)
-        osgi_service_start $APP
-        ;;
-  stop)
-        osgi_service_stop $APP
-        ;;
-  restart)
-        osgi_service_stop $APP
-        osgi_service_start $APP
-        RETVAL=$?
-        ;;
-  status)
-        osgi_service_status $APP
-        ;;
-  *)
-        echo $"Usage: $0 {start|stop|restart|status}"
-        exit 1
-esac
-
-exit $RETVAL