Use the anarchy install medium:
- encrypted luks device
- anarchy-advanced
- lts kernel with base devel
- clean desktop: kde
- other configs as needed (Swap, UEFI, bluetooth, trackpad...) but mostly just install everything
from flask import Flask | |
from uuid import uuid4 | |
app = Flask(__name__) | |
app.config["SECRET_KEY"] = str(uuid4()) | |
IDP_CONFIG = { | |
"well_known_url": "Identity Provider wellknown url: https://{TENANT}.auth0.com/.well-known/openid-configuration", |
[tool.poetry] | |
name = "temp" | |
version = "0.1.0" | |
description = "" | |
authors = ["me"] | |
readme = "README.md" | |
[tool.poetry.dependencies] | |
python = "^3.10" |
#!/usr/bin/env bash | |
set -euo pipefail | |
REPORT_FOLDER=/tmp/mdadm-report | |
REPORT_FILE=/tmp/mdadm-report.txt | |
MD_ARRAY=$(cat /proc/mdstat | grep -o 'md[0-9]\+') | |
ARRAY_DEVICES=$(lsblk --json | jq --arg md_array "$MD_ARRAY" -r '.blockdevices[] | select(.children[0].name == $md_array) | .name') | |
rm -rf $REPORT_FOLDER $REPORT_FILE |