- https://wiki.kobol.io/helios64/pwm/
- https://forum.armbian.com/topic/18238-armbian-21052-focal-with-linux-51035-rockchip64-fancontrol-die-in-error-fans-not-spinning/
fancontrol does not control fan speed:
version: "3.7" | |
services: | |
zookeeper: | |
image: confluentinc/cp-zookeeper:5.4.0 | |
hostname: zookeeper | |
container_name: zookeeper | |
ports: | |
- "2181:2181" | |
environment: | |
ZOOKEEPER_CLIENT_PORT: 2181 |
#!/bin/bash | |
# ############# | |
# CONFIGURATION | |
webhook_url="xxx" | |
channel="Jenkins" | |
pretext="**Jenkins Plugin Check**" | |
icon_url="https://www.jenkins.io/images/logos/general/256.png" | |
export JENKINS_USER_ID=xxx |
# generate a key pair | |
# 1. choose RSA | |
# 2. make sure the key does not expire | |
# 3. don't use a passphrase | |
gpg --full-generate-key | |
# export private key in ascii format | |
gpg --output ci.private.key --armor --export-secret-key [email protected] | |
# export public key in ascii format |
desktop_file=$(find ~/.local/share/applications/ -name chrome*)
sed -i -E 's/Exec=(.*)/Exec=\/usr\/local\/bin\/msteams.sh \1 %u/g' $desktop_file
echo "MimeType=x-scheme-handler/msteams;" >> $desktop_file
# download decrypt script | |
curl -L https://raw.githubusercontent.com/beemdevelopment/Aegis/master/docs/decrypt.py > decrypt.py | |
# copy encrypted backup | |
scp host:/path/to/backup/aegis-backup-20231122-082604.json aegis-backup.json | |
# decrypt backup | |
python3 decrypt.py --input aegis-backup.json --output aegis-backup-decrypted.json | |
# convert to keepassxc compatible csv file |