File tree 4 files changed +21
-3
lines changed
4 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -1197,7 +1197,7 @@ RUN python2 ./generateconfs.py --source=. \
1197
1197
#--trac_id_field=${TRAC_ID_FIELD} \
1198
1198
--openid_address=${OPENID_DOMAIN} \
1199
1199
--sftp_address=${SFTP_DOMAIN} \
1200
- --sftp_subsys_address=${SFTP_SUBSYS_DOMAIN } \
1200
+ --sftp_subsys_address=${SFTP_DOMAIN } \
1201
1201
--ftps_address=${FTPS_DOMAIN} \
1202
1202
--davs_address=${WEBDAVS_DOMAIN} \
1203
1203
--public_http_port=${PUBLIC_HTTP_PORT} --public_https_port=${PUBLIC_HTTPS_PORT} \
Original file line number Diff line number Diff line change @@ -1214,7 +1214,7 @@ RUN ./generateconfs.py --source=. \
1214
1214
#--trac_id_field=${TRAC_ID_FIELD} \
1215
1215
--openid_address=${OPENID_DOMAIN} \
1216
1216
--sftp_address=${SFTP_DOMAIN} \
1217
- --sftp_subsys_address=${SFTP_SUBSYS_DOMAIN } \
1217
+ --sftp_subsys_address=${SFTP_DOMAIN } \
1218
1218
--ftps_address=${FTPS_DOMAIN} \
1219
1219
--davs_address=${WEBDAVS_DOMAIN} \
1220
1220
--public_http_port=${PUBLIC_HTTP_PORT} --public_https_port=${PUBLIC_HTTPS_PORT} \
Original file line number Diff line number Diff line change @@ -1095,7 +1095,7 @@ RUN ./generateconfs.py --source=. \
1095
1095
#--trac_id_field=${TRAC_ID_FIELD} \
1096
1096
--openid_address=${OPENID_DOMAIN} \
1097
1097
--sftp_address=${SFTP_DOMAIN} \
1098
- --sftp_subsys_address=${SFTP_SUBSYS_DOMAIN } \
1098
+ --sftp_subsys_address=${SFTP_DOMAIN } \
1099
1099
--ftps_address=${FTPS_DOMAIN} \
1100
1100
--davs_address=${WEBDAVS_DOMAIN} \
1101
1101
--public_http_port=${PUBLIC_HTTP_PORT} --public_https_port=${PUBLIC_HTTPS_PORT} \
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ source default
4
+
5
+ ${DOCKER:? } run --rm --network host --dns 127.0.0.1 curlimages/curl:8.7.1 \
6
+ --connect-timeout 1 \
7
+ --retry 1 \
8
+ --user " ${MIG_TEST_USER} :${MIG_TEST_USER_PASSWORD} " \
9
+ sftp://${SFTP_DOMAIN} :${SFTP_SUBSYS_PORT} /welcome.txt \
10
+ -k \
11
+ -s \
12
+ -v \
13
+ -o /dev/null \
14
+ > $( basename " $0 " ) .log \
15
+ 2>&1
16
+
17
+ [[ " $? " == 0 ]] && echo -e " ${GREEN} passed${ENDCOLOR} " && exit 0
18
+ echo -e " ${RED} failed${ENDCOLOR} " && exit 1
You can’t perform that action at this time.
0 commit comments