1
0
Fork 0
mirror of synced 2024-07-07 15:25:52 +12:00
budibase/hosting/scripts/build-target-paths.sh

17 lines
546 B
Bash
Raw Normal View History

2022-06-25 04:48:34 +12:00
#!/bin/bash
echo ${TARGETBUILD} > /buildtarget.txt
if [[ "${TARGETBUILD}" = "aas" ]]; then
# Azure AppService uses /home for persisent data & SSH on port 2222
2022-08-11 23:08:56 +12:00
DATA_DIR=/home
mkdir -p $DATA_DIR/{search,minio,couchdb}
mkdir -p $DATA_DIR/couchdb/{dbs,views}
chown -R couchdb:couchdb $DATA_DIR/couchdb/
2022-06-25 04:48:34 +12:00
apt update
apt-get install -y openssh-server
sed -i "s/#Port 22/Port 2222/" /etc/ssh/sshd_config
/etc/init.d/ssh restart
fi
2022-08-11 23:08:56 +12:00
sed -i 's#DATA_DIR#$DATA_DIR#' /opt/clouseau/clouseau.ini /opt/couchdb/etc/local.ini