blob: e494b77c24ee9940892869c989585a3bee15d90b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/bin/sh
## Heimdall wrapper script
# Must run as root
if [ "$UID" -ne 0 ]; then
if which "$PACMAN_AUTH" > /dev/null 2>&1; then
exec $PACMAN_AUTH $0 $@
elif which sudo > /dev/null 2>&1; then
exec sudo $0 $@
fi
echo "Script must be run as root"
exit 1
fi
# Activate conda
[ -f /opt/miniforge/etc/profile.d/conda.sh ] && source /opt/miniforge/etc/profile.d/conda.sh
cd /opt/kraken/heimdall_daq_fw/Firmware
conda activate ../../conda
# Select option
case "$1" in
start)
./daq_start_sm.sh
;;
stop)
./daq_stop.sh
;;
*)
printf "Invalid command\n"
printf "usage: $0 [action]\n"
printf "\tstart - Start Heimdall DAQ\n"
printf "\tstop - Stop Heimdall DAQ\n"
exit 1
;;
esac
|