diff options
author | John Crispin <john@openwrt.org> | 2013-11-11 18:12:30 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-11-11 18:12:30 +0000 |
commit | c902a76f4dabbe49904e8a2ebe210e729b91283a (patch) | |
tree | 9afa3ab5e2429aee7587b5fb18493889ad20c64a /package/base-files/files/etc/rc.button | |
parent | 989783255e2fa5ce374301094a0885c6c4e124f9 (diff) | |
download | upstream-c902a76f4dabbe49904e8a2ebe210e729b91283a.tar.gz upstream-c902a76f4dabbe49904e8a2ebe210e729b91283a.tar.bz2 upstream-c902a76f4dabbe49904e8a2ebe210e729b91283a.zip |
base-files: fix typo in rfkill script
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 38742
Diffstat (limited to 'package/base-files/files/etc/rc.button')
-rwxr-xr-x | package/base-files/files/etc/rc.button/rfkill | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/etc/rc.button/rfkill b/package/base-files/files/etc/rc.button/rfkill index d7f4d3368a..e8d5a9c8cb 100755 --- a/package/base-files/files/etc/rc.button/rfkill +++ b/package/base-files/files/etc/rc.button/rfkill @@ -1,6 +1,6 @@ #!/bin/sh -[ "${ACTION}" = "released" -o -n "{TYPE}" ] || exit 0 +[ "${ACTION}" = "released" -o -n "${TYPE}" ] || exit 0 . /lib/functions.sh |