Fix mistake on socat-at-bridge

This commit is contained in:
Cameron Thompson
2025-01-12 15:00:51 -05:00
parent 1133c3113a
commit 3acde3d007
9 changed files with 14 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
Package: socat-at-bridge
Version: 1.0.0
Version: 1.0.0-1
Depends: libc socat
Source: github/iamromulan/quectel-rgmii-toolkit
Section: utils

View File

@@ -1,9 +1,9 @@
#!/bin/ash
echo "Enabling socat-at-bridge at startup"
service enable socat-at-bridge
service socat-at-bridge enable
echo "Starting socat-at-bridge"
service start socat-at-bridge
service socat-at-bridge start
exit 0

View File

@@ -1,9 +1,9 @@
#!/bin/ash
echo "Disabling socat-at-bridge at startup"
service disable socat-at-bridge
service socat-at-bridge disable
echo "Stopping socat-at-bridge"
service stop socat-at-bridge
service socat-at-bridge stop
exit 0