mirror of
https://github.com/zhaojh329/rttys.git
synced 2026-02-27 09:53:21 +08:00
9 lines
182 B
Bash
Executable File
9 lines
182 B
Bash
Executable File
#!/bin/sh
|
|
|
|
update-rc.d rttys remove
|
|
|
|
which rttys > /dev/null && rm `which rttys`
|
|
cp ../../../../bin/rttys /usr/local/sbin/
|
|
cp rttys.init /etc/init.d/rttys
|
|
update-rc.d rttys defaults
|