Compare commits
No commits in common. "a68f71337bb8c24b45551a269aade2b23e1c8833" and "021d36b1313a374fe791cfa2abea62dabcf0b35f" have entirely different histories.
a68f71337b
...
021d36b131
|
@ -1,6 +1,6 @@
|
|||
## wordpress configuration - uncomment if using wordpress
|
||||
|
||||
export wp_user='admin'
|
||||
# export wp_user='admin'
|
||||
# export wp_pass='admin'
|
||||
|
||||
## leave commented if using default
|
|
@ -1,43 +1,33 @@
|
|||
#!/bin/sh
|
||||
|
||||
# source our config files
|
||||
# source all files in ./config/
|
||||
|
||||
for _file in ./config/local/* ; do
|
||||
. "$_file"
|
||||
done
|
||||
|
||||
# check we have ssh access
|
||||
|
||||
[ -z "$ssh" ] && echo "Error: no ssh configuration specified" && exit 5
|
||||
|
||||
# update local server
|
||||
echo "Updating ..":
|
||||
ssh -T $ssh << EOSSH
|
||||
apt-get update && apt-get upgrade
|
||||
EOSSH
|
||||
echo "Update complete"
|
||||
|
||||
exit
|
||||
|
||||
# source user script
|
||||
. ./scripts/install-user.sh
|
||||
. ./scripts/install-base.sh
|
||||
|
||||
if [ -n "$php_version" ] ; then
|
||||
. ./scripts/install-php.sh
|
||||
fi
|
||||
# source base script
|
||||
# . ./scripts/install-base.sh
|
||||
|
||||
if [ -n "$mariadb_version" ] ; then
|
||||
. ./scripts/install-mariadb.sh
|
||||
elif [ -n "$mysql_version" ] ; then
|
||||
. ./scripts/install-mysql.sh
|
||||
fi
|
||||
# source php script?
|
||||
|
||||
if [ -n "$apache2_version" ] ; then
|
||||
. ./scripts/install-apache2.sh
|
||||
elif [ -n "$nginx_version" ] ; then
|
||||
# TODO nginx install script
|
||||
echo 'TODO . ./scripts/install-nginx.sh'
|
||||
elif [ -n "$litespeed_version" ] ; then
|
||||
# TODO
|
||||
echo 'TODO . ./scripts/install-litespeed.sh'
|
||||
fi
|
||||
# source database script?
|
||||
|
||||
# source web server script?
|
||||
|
||||
# source application script?
|
||||
|
||||
# source dev env script
|
||||
|
|
Loading…
Reference in New Issue