View Single Post
Old 02-25-2013, 09:43 AM   #36
DuckieTigger
Wizard
DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.
 
DuckieTigger's Avatar
 
Posts: 4,742
Karma: 246906703
Join Date: Dec 2011
Location: USA
Device: Oasis 3, Oasis 2, PW3, PW1, KT
Quote:
Originally Posted by knc1 View Post
I just had to assume that the end-user knew the result of checking the check box(s) on whatever they are using.
What surprises me, that KUAL now goes into sub-directories if it doesn't find a menu.json? Another way to "fix" this problem is to not hardcode the firewall filter to /mnt/us/extensions/bbb/frags/fw-base.txt, but relative to the script. Change:
Code:
SRC='/mnt/us/extensions/bbb/frags/fw-base.txt'
to (for example):
Code:
SRC=$( cd $( dirname $0 )/../frags; pwd )'/fw-base.txt'
This way it does not have to be installed in /mnt/us/extensions/bbb if one wants to organize their extension folder maybe?
DuckieTigger is offline   Reply With Quote