[arch-commits] Commit in mongodb/trunk (mongodb.rc)

Felix Yan fyan at nymeria.archlinux.org
Sun Mar 24 09:09:50 UTC 2013


    Date: Sunday, March 24, 2013 @ 10:09:50
  Author: fyan
Revision: 86903

upgpkg: mongodb 2.4.1-1

Deleted:
  mongodb/trunk/mongodb.rc

------------+
 mongodb.rc |   39 ---------------------------------------
 1 file changed, 39 deletions(-)

Deleted: mongodb.rc
===================================================================
--- mongodb.rc	2013-03-24 08:40:39 UTC (rev 86902)
+++ mongodb.rc	2013-03-24 09:09:50 UTC (rev 86903)
@@ -1,39 +0,0 @@
-#!/bin/bash
-# vim: syntax=sh
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=$(pidof /usr/bin/mongod)
-case "$1" in
-  start)
-    stat_busy "Starting mongodb"
-    [ -z "$PID" ] && /bin/su mongodb -c "/usr/bin/mongod --config /etc/mongodb.conf --fork" > /dev/null
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      add_daemon mongodb
-      stat_done
-    fi
-    ;;
-  stop)
-    stat_busy "Stopping mongodb"
-    [ ! -z "$PID" ] && /bin/su mongodb -c "/usr/bin/mongod --config /etc/mongodb.conf --shutdown" &> /dev/null
-    if [ $? -gt 0 ]; then
-      stat_fail
-    else
-      rm_daemon mongodb
-      while [ ! -z "$(pidof /usr/bin/mongod)" ]; do
-        sleep 1;
-      done
-      stat_done
-    fi
-    ;;
-  restart)
-    $0 stop
-    $0 start
-    ;;
-  *)
-    echo "usage: $0 {start|stop|restart}"  
-esac
-exit 0




More information about the arch-commits mailing list