mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-21 08:25:00 -05:00
more setup
This commit is contained in:
parent
af9c3b0520
commit
f8fe617c90
@ -1,3 +1,4 @@
|
|||||||
./compile-java
|
./compile-java
|
||||||
|
./compile-gwt
|
||||||
./compile-web
|
./compile-web
|
||||||
./export
|
./export
|
||||||
|
@ -6,6 +6,6 @@
|
|||||||
./server-deploy mail-user
|
./server-deploy mail-user
|
||||||
./server-deploy mail-key
|
./server-deploy mail-key
|
||||||
./server-deploy tools
|
./server-deploy tools
|
||||||
./web-deploy
|
./server-deploy web
|
||||||
|
|
||||||
#./server-deploy tunnel
|
#./server-deploy tunnel
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
wget http://mirror.sdunix.com/apache/tomcat/tomcat-7/v7.0.42/bin/apache-tomcat-7.0.42.tar.gz
|
wget http://mirror.sdunix.com/apache/tomcat/tomcat-7/v7.0.42/bin/apache-tomcat-7.0.42.tar.gz
|
||||||
|
ln -s apache-tomcat-7.0.42.tar.gz apache-tomcat.tar.gz
|
||||||
tar -xzf apache-tomcat-7.0.42.tar.gz
|
tar -xzf apache-tomcat-7.0.42.tar.gz
|
||||||
rm apache-tomcat
|
rm apache-tomcat
|
||||||
ln -fs apache-tomcat-7.0.42 apache-tomcat
|
ln -fs apache-tomcat-7.0.42 apache-tomcat
|
||||||
|
@ -7,8 +7,8 @@
|
|||||||
<project basedir="." default="gwtc" name="Mailiverse-GWT">
|
<project basedir="." default="gwtc" name="Mailiverse-GWT">
|
||||||
<property environment="env"/>
|
<property environment="env"/>
|
||||||
<property name="ECLIPSE_HOME" value="../../../Desktop/eclipse"/>
|
<property name="ECLIPSE_HOME" value="../../../Desktop/eclipse"/>
|
||||||
<property name="GWT_PLUGIN" value="ls ../ext/gwt"/>
|
<property name="GWT_PLUGIN" value="../ext/gwt"/>
|
||||||
<property name="gwt.args" value="-logLevel INFO"/>
|
<property name="gwt.args" value="-logLevel ALL -style PRETTY"/>
|
||||||
<property name="debuglevel" value="source,lines,vars"/>
|
<property name="debuglevel" value="source,lines,vars"/>
|
||||||
<property name="target" value="1.7"/>
|
<property name="target" value="1.7"/>
|
||||||
<property name="source" value="1.7"/>
|
<property name="source" value="1.7"/>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
set -x
|
set -x
|
||||||
|
|
||||||
tar -xzvf apache-tomcat.tar.gz
|
tar -xzvf apache-tomcat.tar.gz
|
||||||
|
rm tomcat
|
||||||
ln -s apache-tomcat-* tomcat
|
ln -s apache-tomcat-* tomcat
|
||||||
|
|
||||||
ln -s tomcat/logs/catalina.out run.log
|
ln -s tomcat/logs/catalina.out run.log
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
pushd ext
|
|
||||||
./setup
|
|
||||||
popd
|
|
||||||
|
|
||||||
pushd java/ext
|
|
||||||
./setup-bc
|
|
||||||
popd
|
|
||||||
|
|
||||||
pushd build
|
|
||||||
./compile-java
|
|
||||||
popd
|
|
||||||
|
|
||||||
pushd passwords
|
|
||||||
./make
|
|
||||||
popd
|
|
||||||
|
|
||||||
pushd keys
|
|
||||||
./make
|
|
||||||
|
|
||||||
pushd primary
|
|
||||||
./make-self-signed-key
|
|
||||||
popd
|
|
||||||
|
|
||||||
pushd nginx
|
|
||||||
./convert-selfsigned
|
|
||||||
popd
|
|
||||||
popd
|
|
||||||
|
|
||||||
|
|
@ -20,6 +20,9 @@ echo 'Enter the name of your site (example: joesmail.com):'
|
|||||||
read site
|
read site
|
||||||
target=mail.$site
|
target=mail.$site
|
||||||
|
|
||||||
|
echo "Site name will be: $site, the target machine will be $target"
|
||||||
|
echo "";
|
||||||
|
|
||||||
echo 'configuring the hosts files which are used in deploy and compilation'
|
echo 'configuring the hosts files which are used in deploy and compilation'
|
||||||
pushd config/hosts
|
pushd config/hosts
|
||||||
./make-prod $site
|
./make-prod $site
|
||||||
@ -32,26 +35,29 @@ read rootuser
|
|||||||
echo 'OK, starting:'
|
echo 'OK, starting:'
|
||||||
|
|
||||||
echo $rootuser > install/requirements/server_root_account
|
echo $rootuser > install/requirements/server_root_account
|
||||||
(cd install/requirements && ./get_rsa_pub)
|
pushd install/requirements
|
||||||
|
./get_rsa_pub
|
||||||
|
popd
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
I am now going to enable passwordless login on the $target INSTALL computer
|
I am now going to enable passwordless login on the $target INSTALL computer
|
||||||
You will need to enter the password"
|
You will need to enter the password a few times...
|
||||||
|
"
|
||||||
echo '
|
echo '
|
||||||
Press <return> to start
|
Press <return> to start
|
||||||
';
|
'
|
||||||
read dummy
|
read dummy1
|
||||||
|
|
||||||
cd install
|
|
||||||
|
|
||||||
|
pushd install
|
||||||
./enable-passwordless-login $target
|
./enable-passwordless-login $target
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
Hopefully that went well, if it didn't well, press control-c now
|
Hopefully that went well, if it didn-t well, press control-c now
|
||||||
I'm now going to setup the target machine.
|
I am now going to setup the target machine.
|
||||||
Press <return> to start
|
Press <return> to start
|
||||||
';
|
'
|
||||||
read dummy;
|
read dummy2
|
||||||
|
|
||||||
./setup-server $target
|
./setup-server $target
|
||||||
|
|
||||||
@ -60,3 +66,6 @@ Hopefully that went well.....
|
|||||||
|
|
||||||
Please run the next setup script
|
Please run the next setup script
|
||||||
'
|
'
|
||||||
|
|
||||||
|
popd
|
||||||
|
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
cd deploy
|
cd deploy
|
||||||
./server-deploy-all
|
./deploy-all
|
||||||
|
Loading…
Reference in New Issue
Block a user