5d50119825
change more
9 lines
204 B
Bash
9 lines
204 B
Bash
|
|
CURPATH=`pwd`
|
|
SUPPATH=$(dirname "$CURPATH")
|
|
|
|
mkdir -p $CURPATH/conf.d
|
|
cp *.conf $CURPATH/conf.d/
|
|
sed -i "s#MYPATH#$SUPPATH#g" $CURPATH/conf.d/*.conf
|
|
ln -sf $CURPATH/conf.d/*.conf /etc/supervisor/conf.d/
|