source: npl/commonservers/daemontools/svcrestart @ 105afb5

Last change on this file since 105afb5 was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100755
File size: 174 bytes
RevLine 
[c5c522c]1#!/bin/bash
2SERVICE=$1
3
4#only restart it its up currently
5if ! svstat $SERVICE | grep ': down' >/dev/null; then
6        svcstop $SERVICE || exit 1
7        svcstart $SERVICE || exit 1
8fi
9
10
Note: See TracBrowser for help on using the repository browser.