Postinstall as a help, more than automate
authorEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Sun, 19 Mar 2017 20:52:50 +0000 (21:52 +0100)
committerEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Sun, 19 Mar 2017 20:52:50 +0000 (21:52 +0100)
example/postinstall.sh

index 4b2277e..351789d 100755 (executable)
@@ -1,36 +1,19 @@
 #!/bin/bash
 
-cd `dirname $0`
-
 cat << EOF
 
+
 ===========================
 Post-installation procedure
 ===========================
 
-This will preconfigure examples when proceed.
+Execute multiple-deployment scripts by mean:
+   example/diameter/launcher/DEPLOY_setups.sh
 
-You can also execute this procedure later by mean:
+Or single endpoints using:
+   example/diameter/launcher/DEPLOY.sh
 
-   1) scons install: no sudo required again once installed and perhaps
-                     you prefer deployments with another unix user.
 
-   2) Executing './example/postinstall.sh'
 
-
-Press ENTER to continue, CTRL+C to abort ...
 EOF
 
-read
-
-# diameter module
-./diameter/launcher/DEPLOY_clientAndServer.sh
-
-# ...
-# ...
-
-# perhaps the user wants to redeploy ...
-#touch `basename $0 .sh`.out
-
-exit 0
-