25 lines
703 B
Bash
Executable File
25 lines
703 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Print all commands to standard output
|
|
set -x
|
|
|
|
BOOT_DIR_PATH=/boot/hydrophonitor
|
|
LOG_FILE=$BOOT_DIR_PATH/$(date +"%Y-%m-%dT%H-%M-%S")-startup-log.txt
|
|
|
|
{
|
|
SCRIPT_PATH=/home/pi/hydrophonitor/scripts
|
|
|
|
# Export the configuration values
|
|
. $SCRIPT_PATH/export-config-values.sh
|
|
|
|
# Create output directory
|
|
OUTPUT_DIR=$OUTPUT_PATH/$(date +"%Y-%m-%d_%H-%M-%S_output")
|
|
echo "Create output directory $OUTPUT_DIR"
|
|
mkdir -p "$OUTPUT_DIR"/audio
|
|
|
|
# Sleep for a little to wait for GPS and sound card to be ready
|
|
sleep 10
|
|
|
|
(export OUTPUT_DIR=$OUTPUT_DIR; $SCRIPT_PATH/start-audio.sh & $SCRIPT_PATH/start-gps.sh & $SCRIPT_PATH/start-pressure-depth.sh) 2>&1 | tee "$OUTPUT_DIR"/log.txt
|
|
} 2>&1 | tee $LOG_FILE
|