Assume your deployment is under /netbox:
Add to configuration/configuration.py
BASE_PATH = environ.get('BASE_PATH', '')Add to env/netbox.env
Assume your deployment is under /netbox:
Add to configuration/configuration.py
BASE_PATH = environ.get('BASE_PATH', '')Add to env/netbox.env
You need gateway 3(mgl03) connected to MiHome. And also ip and gateway token.
Via XiaomiGateway3 component.
You must input in the 'Open Telnet command' field(as it is without changing anything):
{"method":"set_ip_info","params":{"ssid":"\"\"","pswd":"123123 ; passwd -d admin ; echo enable > /sys/class/tty/tty/enable; telnetd"}}
Recently found some clowny gist was the top result for 'google takeout multiple tgz', where it was using two bash scripts to extract all the tgz files and then merge them together. Don't do that. Use brace expansion, cat the TGZs, and extract:
$ cat takeout-20201023T123551Z-{001..011}.tgz | tar xzivf -You don't even need to use brace expansion. Globbing will order the files numerically:
$ cat takeout-20201023T123551Z-*.tgz | tar xzivf -| #!/bin/sh | |
| #Install Citrix Workspace App on Fedora 32 | |
| #Download Client From https://www.citrix.com/en-au/downloads/workspace-app/linux/workspace-app-for-linux-latest.html | |
| sudo dnf install -y ICAClientWeb-rhel-20.04.0.21-0.x86_64.rpm | |
| sudo dnf install -y compat-openssl10.x86_64 | |
| # Update libcrypto reference in desktop file | |
| sudo sed -i '/Exec=/d' /usr/share/applications/wfica.desktop |
| #!/bin/sh | |
| /usr/bin/ldapsearch -o ldif-wrap=no "$@" | perl -MMIME::Base64 -Mutf8 -pe 's/^([-a-zA-Z0-9;]+):(:\s+)(\S+)$/$1.$2.&decode_base64($3)/e' |