File tree 1 file changed +12
-0
lines changed
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,23 @@ if [ -e $INSTALL_COUCH/.init ]; then COUCH_INIT_DONE=1; else COUCH_INIT_DONE=0;
32
32
33
33
# callbacks to activate or show initialisation has been done
34
34
activate_asyncstageout (){
35
+ if [ ! -d " $INSTALL_AS " ]; then
36
+ mkdir -p $INSTALL_AS
37
+ fi
35
38
touch $INSTALL_AS /.using
36
39
cp $ROOT_DIR /apps/asyncstageout/configuration/Example.py $CONFIG_AS /config-template.py
37
40
}
38
41
39
42
inited_asyncstageout (){
43
+ if [ ! -d " $INSTALL_AS " ]; then
44
+ mkdir -p $INSTALL_AS
45
+ fi
40
46
touch $INSTALL_AS /.init
41
47
}
42
48
inited_couch (){
49
+ if [ ! -d " $INSTALL_AS " ]; then
50
+ mkdir -p $INSTALL_AS
51
+ fi
43
52
touch $INSTALL_COUCH /.init
44
53
}
45
54
@@ -109,6 +118,9 @@ load_secrets_file(){
109
118
if [ ! " x$MATCH_OPS_PROXY " == " x" ]; then
110
119
OPS_PROXY=$MATCH_OPS_PROXY ;
111
120
fi
121
+ if [ ! " x$MATCH_AMQ_AUTH_FILE " == " x" ]; then
122
+ AMQ_AUTH_FILE=$MATCH_AMQ_AUTH_FILE ;
123
+ fi
112
124
}
113
125
114
126
print_settings (){
You can’t perform that action at this time.
0 commit comments