diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-08-19 12:13:21 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-08-19 12:13:21 +0000 |
commit | fb44c5eb1655dfe4bae3cb584e60fe74d7e6cb87 (patch) | |
tree | af1387b8106aa67f2bb61509bfef1f9b73285dfb /main/mqtt-exec/mqtt-exec.initd | |
parent | 657ed8fec2f136a917184121fdaf5484366698bb (diff) | |
download | aports-fb44c5eb1655dfe4bae3cb584e60fe74d7e6cb87.tar.bz2 aports-fb44c5eb1655dfe4bae3cb584e60fe74d7e6cb87.tar.xz |
main/mqtt-exec: fix typo in init.d script
Diffstat (limited to 'main/mqtt-exec/mqtt-exec.initd')
-rw-r--r-- | main/mqtt-exec/mqtt-exec.initd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/mqtt-exec/mqtt-exec.initd b/main/mqtt-exec/mqtt-exec.initd index 727ee203af..8f25fdace3 100644 --- a/main/mqtt-exec/mqtt-exec.initd +++ b/main/mqtt-exec/mqtt-exec.initd @@ -18,8 +18,8 @@ start() { if [ -n "$will_topic" ]; then set -- "$@" --will-topic "$will_topic" fi - if yesno "$will_retained"; then - set -- "$@" --will-retained + if yesno "$will_retain"; then + set -- "$@" --will-retain fi if [ -n "$will_payload" ]; then set -- "$@" --will-payload "$will_payload" |