For reference on replacement patterns see:
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
## This is config for Argon controllable fan | |
## Temperature at which fan starts | |
t_on = 50 | |
## Temperature at which fan has full speed | |
t_full = 65 | |
## Temperature difference for cooldown curve. | |
## Basically fan will start to slow down when temperature drops by this amount. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# /etc/rsyslog.conf configuration file for rsyslog | |
# | |
# For more information install rsyslog-doc and see | |
# /usr/share/doc/rsyslog-doc/html/configuration/index.html | |
################### | |
#### TEMPLATES #### | |
################### | |
template(name="RemoteDynaFile" type="string" string="/var/log/remote/%HOSTNAME%.log") |
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 | |
set -x | |
# This script with documentation is available at: https://gist.github.com/blazewicz/04e666ae1f25387c8b291d81b12c550c | |
## 1. install required dependencies with apt | |
apt update && apt install python3-venv python3-dev libffi-dev libssl-dev | |
## 2. create directory for docker-compose's virtualenv | |
mkdir -p /opt/local/docker-compose |
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 | |
set +x | |
PY_VERSION=3.10.1 | |
export MAKE_OPTS="-j4" | |
export PYTHON_CONFIGURE_OPTS="$PYTHON_CONFIGURE_OPTS --enable-framework" | |
export PYTHON_CONFIGURE_OPTS="$PYTHON_CONFIGURE_OPTS --with-computed-gotos" | |
export PYTHON_CONFIGURE_OPTS="$PYTHON_CONFIGURE_OPTS --with-system-expat" |