2023-09-30 23:59:06 +04:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2023-10-08 04:30:19 +04:00
|
|
|
response=$(curl -XDELETE --unix-socket /var/run/dwelling-radio/sock http://localhost/api/listener -o /dev/null -s -w "%{response_code}")
|
2023-09-30 23:59:06 +04:00
|
|
|
|
2023-10-01 00:02:04 +04:00
|
|
|
if [ "$response" -ne "200" ]; then
|
2023-09-30 23:59:06 +04:00
|
|
|
exit 1;
|
|
|
|
fi
|