Merge branch 'master' into dynamic_procedure_library
[anna.git] / example / postinstall.sh
1 #!/bin/bash
2
3 cd `dirname $0`
4
5 cat << EOF
6
7 ===========================
8 Post-installation procedure
9 ===========================
10
11 This will preconfigure examples when proceed.
12
13 You can also execute this procedure later by mean:
14
15    1) scons install: no sudo required again once installed and perhaps
16                      you prefer deployments with another unix user.
17
18    2) Executing './example/postinstall.sh'
19
20
21 Press ENTER to continue, CTRL+C to abort ...
22 EOF
23
24 read
25
26 # diameter module
27 ./diameter/launcher/DEPLOY_clientAndServer.sh
28
29 # ...
30 # ...
31
32 # perhaps the user wants to redeploy ...
33 #touch `basename $0 .sh`.out
34
35 exit 0
36