mirror of https://github.com/schoebel/mars
23 lines
337 B
Bash
Executable File
23 lines
337 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This is a trivial script for testing.
|
|
|
|
# Important: set pwd to occupy the mountpoint.
|
|
cd "$1" || exit $?
|
|
|
|
# 2-edge handshake protocol
|
|
start_flag=run-the-load.flag
|
|
running_flag=load-is-running.flag
|
|
|
|
if ! [[ -e $start_flag ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
rm -f $start_flag
|
|
|
|
while [[ -e $running_flag ]]; do
|
|
sleep 1
|
|
done
|
|
|
|
exit 0
|