From 13a2e1a89d575332ae4155b22021306891c010de Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 17 Dec 2015 18:09:17 +0200 Subject: etc/dev removed --- etc/dev/brep | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100755 etc/dev/brep (limited to 'etc/dev/brep') diff --git a/etc/dev/brep b/etc/dev/brep deleted file mode 100755 index 3ec448b..0000000 --- a/etc/dev/brep +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# file : etc/brep -# copyright : Copyright (c) 2014-2015 Code Synthesis Ltd -# license : MIT; see accompanying LICENSE file -# -# Designed to simplify controlling brep services. - -CMD="$1" -SCRIPT_DIR=`dirname $0` - -case $CMD in - start|stop|status) ;; - *) - echo "Usage: brep (start|stop|status)" - exit 1 - ;; -esac - -case $CMD in - start) - $SCRIPT_DIR/pgctl start && $SCRIPT_DIR/apachectl start - ;; - stop) - $SCRIPT_DIR/apachectl stop - $SCRIPT_DIR/pgctl stop - ;; - status) - $SCRIPT_DIR/pgctl status - $SCRIPT_DIR/apachectl status - ;; -esac -- cgit v1.1