This file contains hidden or 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/sh | |
set -eu -o pipefail | |
CONTAINER_NAME="eap_proxy" | |
IMAGE_NAME="pbrah/eap_proxy-udmpro" | |
IMAGE_TAG="v1.1" | |
container_exists() { | |
podman container inspect "${1}" &>/dev/null |
This file contains hidden or 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 | |
while getopts ":h:t:n:p:s" opt; do | |
case $opt in | |
h) OPT_H="${OPTARG}" | |
;; | |
t) OPT_T=${OPTARG} | |
;; | |
n) OPT_N=${OPTARG} | |
;; |
This file contains hidden or 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/sh | |
set -eu -o pipefail | |
CONTAINER_NAME="wpa_supplicant" | |
IMAGE_NAME="pbrah/wpa_supplicant-udmpro" | |
IMAGE_TAG="v1.0" | |
MAC_ADDRESS="" | |
ETH_IFACE="eth8" |
This file contains hidden or 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 | |
# | |
# quicktsscheck.sh | |
# by /u/magn2o | |
# | |
# A simple, quick utility to grab all signed SHSH/blobs. Toss it in crontab and let it work it's magic. | |
# Tested/built on macOS 10.13.3. | |
# | |
# | |
# CHANGELOG: |