forked from GNUsocial/gnu-social
[TOOLS][DOCKER] Added first version of configuration shell script
This commit is contained in:
parent
850f1b327e
commit
b02564e575
63
bin/configure
vendored
63
bin/configure
vendored
@ -1,54 +1,27 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
check_retval(){
|
|
||||||
case $1 in
|
|
||||||
1|255)
|
|
||||||
echo "Stopped"
|
|
||||||
exit;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
check_input(){
|
|
||||||
if [ "$1" = "" ]
|
|
||||||
then
|
|
||||||
echo "Can't be empty"
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
DIALOG=${DIALOG=dialog}
|
DIALOG=${DIALOG=dialog}
|
||||||
tempfile=`tempfile 2>/dev/null` || tempfile=/tmp/test$$
|
tempfile=`tempfile 2>/dev/null` || tempfile=/tmp/test$$
|
||||||
trap "rm -f $tempfile" 0 1 2 5 15
|
trap "rm -f $tempfile" 0 1 2 5 15
|
||||||
|
|
||||||
$DIALOG --title "Configure" \
|
$DIALOG --title "Configure" --clear \
|
||||||
--inputbox "Domain root:" 12 51 2> $tempfile
|
--inputbox "Domain root:" 12 51 2> $tempfile
|
||||||
check_retval $?
|
|
||||||
domain_root=`cat $tempfile`
|
domain_root=`cat $tempfile`
|
||||||
check_input $domain_root
|
|
||||||
|
|
||||||
|
|
||||||
$DIALOG --title "Configure" \
|
|
||||||
--inputbox "Subdomain (can be empty):" 12 51 2> $tempfile
|
|
||||||
check_retval $?
|
|
||||||
sub_domain=`cat $tempfile`
|
|
||||||
|
|
||||||
|
|
||||||
$DIALOG --title "Configure" --clear \
|
$DIALOG --title "Configure" --clear \
|
||||||
--menu "Use certificate signed by Let's Encrypt?" 12 51 2 \
|
--inputbox "Subdomain (can be empty):" 12 51 2> $tempfile
|
||||||
"Y" "" \
|
sub_domain=`cat $tempfile`
|
||||||
"n" "" 2> $tempfile
|
|
||||||
check_retval $?
|
$DIALOG --title "Configure" --clear \
|
||||||
|
--inputbox "Use certificate signed by Let's Encrypt (Y/n):" 12 51 2> $tempfile
|
||||||
signed=`cat $tempfile`
|
signed=`cat $tempfile`
|
||||||
|
|
||||||
[ "${signed}" = "${signed#[Yy]}" ]
|
[ "${signed}" = "${signed#[Yy]}" ]
|
||||||
signed=$?
|
signed=$?
|
||||||
|
|
||||||
if [ $signed -ne 0 ]; then
|
if [ $signed -ne 0 ]; then
|
||||||
$DIALOG --title "Configure" \
|
printf "Email: "
|
||||||
--inputbox "Email:" 12 51 2> $tempfile
|
read -r email
|
||||||
check_retval $?
|
|
||||||
email=`cat $tempfile`
|
|
||||||
check_input $email
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "$sub_domain" ]
|
if [ -z "$sub_domain" ]
|
||||||
@ -72,6 +45,8 @@ chmod +x ./docker/bootstrap/bootstrap.env
|
|||||||
|
|
||||||
docker-compose -f docker/bootstrap/bootstrap.yaml up
|
docker-compose -f docker/bootstrap/bootstrap.yaml up
|
||||||
|
|
||||||
|
|
||||||
|
## --------------------------------
|
||||||
git_dir=$PWD
|
git_dir=$PWD
|
||||||
while [ ! -d .git ]; do
|
while [ ! -d .git ]; do
|
||||||
git_dir=$(dirname "${git_dir}")
|
git_dir=$(dirname "${git_dir}")
|
||||||
@ -90,46 +65,34 @@ $DIALOG --clear --title "Configure" \
|
|||||||
--menu "Select DBMS:" 12 51 2 \
|
--menu "Select DBMS:" 12 51 2 \
|
||||||
"postgres" "" \
|
"postgres" "" \
|
||||||
"mariadb" "" 2> $tempfile
|
"mariadb" "" 2> $tempfile
|
||||||
check_retval $?
|
|
||||||
dbms=`cat $tempfile`
|
dbms=`cat $tempfile`
|
||||||
|
|
||||||
$DIALOG --title "Configure" --clear \
|
$DIALOG --title "Configure" --clear \
|
||||||
--inputbox "Social database name:" 12 51 2> $tempfile
|
--inputbox "Social database name:" 12 51 2> $tempfile
|
||||||
check_retval $?
|
|
||||||
db=`cat $tempfile`
|
db=`cat $tempfile`
|
||||||
|
|
||||||
if [ "${dbms}" = 'mariadb' ]
|
if [ "${dbms}" = 'mariadb' ]
|
||||||
then
|
then
|
||||||
$DIALOG --title "Configure" --clear \
|
$DIALOG --title "Configure" --clear \
|
||||||
--inputbox "Database user:" 12 51 2> $tempfile
|
--inputbox "Database user:" 12 51 2> $tempfile
|
||||||
check_retval $?
|
|
||||||
user=`cat $tempfile`
|
user=`cat $tempfile`
|
||||||
check_input $user
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
$DIALOG --title "Configure" --clear \
|
$DIALOG --title "Configure" --clear \
|
||||||
--inputbox "Database password:" 12 51 2> $tempfile
|
--inputbox "Database password:" 12 51 2> $tempfile
|
||||||
check_retval $?
|
|
||||||
password=`cat $tempfile`
|
password=`cat $tempfile`
|
||||||
check_input $password
|
|
||||||
|
|
||||||
$DIALOG --title "Configure" --clear \
|
$DIALOG --title "Configure" --clear \
|
||||||
--inputbox "Sitename:" 12 51 2> $tempfile
|
--inputbox "Sitename:" 12 51 2> $tempfile
|
||||||
check_retval $?
|
|
||||||
sitename=`cat $tempfile`
|
sitename=`cat $tempfile`
|
||||||
check_input $sitename
|
|
||||||
|
|
||||||
$DIALOG --title "Configure" --clear \
|
$DIALOG --title "Configure" --clear \
|
||||||
--inputbox "Admin nickname:" 12 51 2> $tempfile
|
--inputbox "Admin nickname:" 12 51 2> $tempfile
|
||||||
check_retval $?
|
|
||||||
admin_nick=`cat $tempfile`
|
admin_nick=`cat $tempfile`
|
||||||
check_input $admin_nick
|
|
||||||
|
|
||||||
$DIALOG --title "Configure" --clear \
|
$DIALOG --title "Configure" --clear \
|
||||||
--inputbox "Admin password:" 12 51 2> $tempfile
|
--inputbox "Admin password:" 12 51 2> $tempfile
|
||||||
check_retval $?
|
|
||||||
admin_password=`cat $tempfile`
|
admin_password=`cat $tempfile`
|
||||||
check_input $admin_password
|
|
||||||
|
|
||||||
$DIALOG --clear --title "Configure" \
|
$DIALOG --clear --title "Configure" \
|
||||||
--menu "Site profile:" 12 51 4 \
|
--menu "Site profile:" 12 51 4 \
|
||||||
@ -137,14 +100,11 @@ $DIALOG --clear --title "Configure" \
|
|||||||
"private" "" \
|
"private" "" \
|
||||||
"community" "" \
|
"community" "" \
|
||||||
"single_user" "" 2> $tempfile
|
"single_user" "" 2> $tempfile
|
||||||
check_retval $?
|
|
||||||
profile=`cat $tempfile`
|
profile=`cat $tempfile`
|
||||||
|
|
||||||
$DIALOG --title "Configure" --clear \
|
$DIALOG --title "Configure" --clear \
|
||||||
--inputbox "Mailer dsn:" 12 51 2> $tempfile
|
--inputbox "Mailer dsn:" 12 51 2> $tempfile
|
||||||
check_retval $?
|
|
||||||
mailer_dsn=`cat $tempfile`
|
mailer_dsn=`cat $tempfile`
|
||||||
check_input $mailer_dsn
|
|
||||||
|
|
||||||
mkdir -p ./docker/db
|
mkdir -p ./docker/db
|
||||||
|
|
||||||
@ -203,7 +163,8 @@ $DIALOG --title "Services" --clear \
|
|||||||
3 "php" on \
|
3 "php" on \
|
||||||
4 "db" on \
|
4 "db" on \
|
||||||
5 "redis" on 2> $tempfile
|
5 "redis" on 2> $tempfile
|
||||||
check_retval $?
|
retval=$?
|
||||||
|
|
||||||
choice=`cat $tempfile`
|
choice=`cat $tempfile`
|
||||||
|
|
||||||
echo "\nservices:" >> docker-compose.yaml
|
echo "\nservices:" >> docker-compose.yaml
|
||||||
|
Loading…
Reference in New Issue
Block a user