Browse Source

Remove any stray socket files before creating new ones

remotes/origin/fetchallappconfig
Robin McCorkell 10 years ago
committed by Thomas Müller
parent
commit
d47824f4cf
  1. 1
      apps/files_external/tests/env/start-amazons3-ceph.sh
  2. 1
      apps/files_external/tests/env/start-swift-ceph.sh

1
apps/files_external/tests/env/start-amazons3-ceph.sh

@ -33,6 +33,7 @@ fi;
# create readiness notification socket
notify_sock=$(readlink -f "$thisFolder"/dockerContainerCeph.$EXECUTOR_NUMBER.amazons3.sock)
rm -f "$notify_sock" # in case an unfinished test left one behind
mkfifo "$notify_sock"
user=test

1
apps/files_external/tests/env/start-swift-ceph.sh

@ -33,6 +33,7 @@ fi;
# create readiness notification socket
notify_sock=$(readlink -f "$thisFolder"/dockerContainerCeph.$EXECUTOR_NUMBER.swift.sock)
rm -f "$notify_sock" # in case an unfinished test left one behind
mkfifo "$notify_sock"
port=5001

Loading…
Cancel
Save