11 lines
311 B
Bash
11 lines
311 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
MYSTIC_DIR="$1"
|
||
|
|
||
|
sed -e "s!@MYSTIC_DIR@!${MYSTIC_DIR}!g" cron.sh > ${MYSTIC_DIR}/cron
|
||
|
chmod +x ${MYSTIC_DIR}/cron
|
||
|
#sed -e "s!@MYSTIC_DIR@!${MYSTIC_DIR}!g" mis-stop.sh > ${MYSTIC_DIR}/mis-stop
|
||
|
#chmod +x ${MYSTIC_DIR}/mis-stop
|
||
|
sed -e "s!@MYSTIC_DIR@!${MYSTIC_DIR}!g" dbp.ini > ${MYSTIC_DIR}/dbp.ini
|
||
|
|