Created quecmanager services Removed SMS for now Updated socat start priority and add smd7 as an option
12 lines
271 B
Bash
Executable File
12 lines
271 B
Bash
Executable File
#!/bin/ash
|
|
|
|
echo "Enabling socat-at-bridge at startup"
|
|
service socat-at-bridge enable
|
|
echo "Starting socat-at-bridge"
|
|
service socat-at-bridge start
|
|
echo "/dev/ttySMD11 is now available"
|
|
echo "If you want /dev/ttySMD7 as well you can use service socat-at-bridge"
|
|
|
|
exit 0
|
|
|