Create S75generate_vtx_info

pull/1699/head
snokvist 2025-02-08 14:06:32 +01:00 committed by GitHub
parent 139b54f73f
commit ea926eac7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#!/bin/sh
case "$1" in
start)
echo "Generating or updating /etc/vtx_info.yaml..."
generate_vtx_info.sh
;;
stop)
echo "Generating or updating /etc/vtx_info.yaml only done when starting..."
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
;;
esac