2017-10-26 13:01:33 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-02-13 18:14:54 +01:00
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# files used by the app
|
|
|
|
password_file="/etc/mosquitto/passwd"
|
|
|
|
config_file="/etc/mosquitto/conf.d/default.conf"
|
|
|
|
|
2021-02-27 18:28:49 +01:00
|
|
|
# extra repository used by the app
|
|
|
|
extra_repo="deb https://repo.mosquitto.org/debian buster main"
|
|
|
|
extra_repo_key="http://repo.mosquitto.org/debian/mosquitto-repo.gpg.key"
|
|
|
|
|
2021-02-13 18:14:54 +01:00
|
|
|
# dependencies used by the app
|
|
|
|
pkg_dependencies="mosquitto"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|