btauth --user USER_OR_EMAIL --pass PASSWORD # To Authenticate with the BT WiFi
btmaintain --user USER_OR_EMAIL --pass PASSWORD # To maintain a connection and re-authenticate automatically
nohup btmaintain --user USER_OR_EMAIL --pass PASSWORD 2>&1 >/dev/null & # Same as above but ran in background
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0eNrs3d2uHUeWGOhXafBaasTvWrELMxeG4RkMYLiBHnt8YTQESmJVES2JMkW1XdOoB/B7zLyYn2TOOZTEoyqGdnxZY1S5u9FAtQ55YjEyV0Rm5Jex1/7HF59/9f2rb9++/ubdi1/944vXX7z55rsXv/pP//jiu9e/+eblV49/9s3Lr1+9+NWLb77/4qtXL99++vbVyy/evXn74vefvHj9zZev/uuLX9Xf/90nL1598+71u9ev3jd++uF3n33z/defv3r78Auf/Bjk29ffvvr03ZtPf/P2zffffPnikxffvvnuodmbbx7/oYdQrd3+en7y4ncvfvVpG+uv58M/8uXrt6++eP8r6/ef/FHs9rPYfxyx3vJDxIf//P1HYvTj/v0sWnw82oBo6+d9+9nR1vaR4PP8VJb8heDjI7EDYnPH8zx4XdjxBbFv2vHbnQH2syG7GWC1wAzQo68wvXrRw68fJtjbN5+/+fbN23cfixs/RX2I+fbVf/7+1XfvPvv166/evXr73eMvfff+H3l/efjxuvHJi59+42d/+sO/99Wb37z+7t3rLz59/Icf/9X//P3Lrx769ngxevP264er0ycvvnjz9bcv3758vCD96sX/+vQH3z9eymb5/d89/N/HDuh8trdR+XQNiF400zD7Z9XgMP1n4/MC8z86R4crQDQ9Mbfz4NkxeCv3Li857l5eGlwBnofb3MDahyn/5asvXn/56u2nD9Ps89ffPE2zj0z+/mPA8cfZepyR37x7++arzz5/9duX//D6caL+449xP3v4uy9f/3Bh+McXz396uCD8+vXbh4vIh4XIu999+9inf3j99t33T5P/h06+/41P//3jkuRx/fLu5dMVYJY/uDz89//2/7x4PNw/jPtDmO/fvvzm9fdff/rr71999ekXr7766n28P7q+PP7Bq89+6MzLh5P8uPx58/27b79/94dLpzs9/s3bV6++ef+vfPu7z56uXJ/9+u2brz97/c1DsBe/+vXLr7579XgV+1iSPlzGvn7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Version 1.0 | |
# Latest version of this script: https://gist.github.com/ljm42/74800562e59639f0fe1b8d9c317e07ab | |
# This script was tested on Unraid 6.7.2, although it will likely work in previous versions as well. It should not be needed in 6.8 | |
# It will solve the problem reported here: https://forums.unraid.net/bug-reports/stable-releases/dockers-wanting-to-update-but-dont-in-the-end-r618/ | |
# where due to changes in the Docker Hub API, the Unraid Docker client reported that certain Dockers needed to be updated. | |
# Thanks for @bluemonster for coming up with the fix! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# based on the "patch deployment" strategy in this comment: | |
# https://github.com/kubernetes/kubernetes/issues/13488#issuecomment-372532659 | |
# requires jq | |
# $1 is a valid namespace | |
function refresh-all-pods() { | |
echo | |
DEPLOYMENT_LIST=$(kubectl -n $1 get deployment -o json|jq -r .items[].metadata.name) | |
echo "Refreshing pods in all Deployments" | |
for deployment_name in $DEPLOYMENT_LIST ; do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
BACKUPDEST="$1" | |
DOMAIN="$2" | |
MAXBACKUPS="$3" | |
if [ -z "$BACKUPDEST" -o -z "$DOMAIN" ]; then | |
echo "Usage: ./vm-backup <backup-folder> <domain> [max-backups]" | |
exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# CONF | |
DBG=true | |
[email protected] | |
RELOG_PASSW=xxxxxxxxxxxxxxx | |
# END CONF |