lede/package/lean/shellinabox/files/shellinaboxd.init

16 lines
422 B
Plaintext
Raw Normal View History

2018-04-28 22:12:13 +08:00
#!/bin/sh /etc/rc.common
# Copyright (C) 2015 snqu.com
USE_PROCD=1
START=99
BIN=/usr/sbin/shellinaboxd
start_service() {
procd_open_instance
2018-05-13 11:10:07 +08:00
procd_set_param command $BIN -u root -c /etc/shellinabox \
--css=/etc/shellinabox/black-on-white.css \
--css=/etc/shellinabox/white-on-black.css \
--user-css Normal:+/etc/shellinabox/black-on-white.css,Reverse:-/etc/shellinabox/white-on-black.css
2018-04-28 22:12:13 +08:00
procd_close_instance
2018-05-13 11:10:07 +08:00
}