/[smeserver]/rpms/runit/sme8/runit.svdepcalc
ViewVC logotype

Contents of /rpms/runit/sme8/runit.svdepcalc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Tue Jun 12 20:53:19 2007 UTC (16 years, 11 months ago) by slords
Branch: MAIN
CVS Tags: runit-1_7_2-1_el5_sme, runit-2_0_0-1_el5_sme, HEAD
Import on branch sme8 of package runit-1.7.2-1.el5.sme.src.rpm

1 #!/bin/sh
2
3 if [ ! -d $1 ]; then
4 echo "Usage: svdepcalc /path/to/your/service/directory"
5 exit 111
6 fi
7
8 cd $1
9 for DIR in *; do rm -rf $DIR/downdeps; done
10 for DIR in *; do
11 if [ -d $DIR/updeps ]; then
12 for DEP in $DIR/updeps/*; do
13 mkdir -p $DEP/downdeps
14 ln -s `pwd`/$DIR $DEP/downdeps
15 done
16 fi
17 done

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed