Config utility: https://pypi.org/project/Ultimarc/
Reading:
sudo ultimarc ipac2 --get-config --indent 4Important
The input file is realative to site-packages.
Config utility: https://pypi.org/project/Ultimarc/
Reading:
sudo ultimarc ipac2 --get-config --indent 4Important
The input file is realative to site-packages.
| --- /usr/local/pkg/acme/acme_sh.inc | |
| +++ /usr/local/pkg/acme/acme_sh.inc | |
| @@ -183,6 +183,9 @@ | |
| if (!empty($this->preferredchain)) { | |
| $cmdparameters .= " --preferred-chain " . escapeshellarg($this->preferredchain); | |
| } | |
| + /* patch: Force Let's Encrypt "shortlived" profile */ | |
| + /* see: https://redmine.pfsense.org/issues/16604 */ | |
| + $cmdparameters .= " --cert-profile " . escapeshellarg("shortlived"); | |
| if (!empty($this->addressfamily)) { |
| #!/usr/bin/env python3 | |
| """ | |
| mailfiles.py — Proof-of-concept CLI to email file(s) via SMTP. | |
| Standard library only. Loads attachments into memory. | |
| Defaults: | |
| - If --server is omitted, MX of first --to recipient is used on port 25. | |
| - Opportunistic STARTTLS: try if supported; use --require-starttls to enforce, | |
| or --no-starttls to disable. Use --ssl for implicit TLS (e.g., 465). |
| --- | |
| name: "Repo Tickle Action" | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| tickle-the-repo: | |
| name: "Tickling the Repo 🪶" |
| #!/bin/sh | |
| # shellcheck shell=dash | |
| # This script checks the compatibility of all modules in the modules directory with the specified FoundryVTT version. | |
| # Constants | |
| MODULES_DIR="/data/Data/modules" | |
| TARGET_VERSION="12.331" | |
| TARGET_VERSION_MAJOR=$(echo "$TARGET_VERSION" | cut -d. -f1) |
| #!/bin/ash | |
| # Touch-VTT Issue 61 Fix | |
| # ===================== | |
| PATCH_DOC_URL="https://github.com/Oromis/touch-vtt/issues/61" | |
| PATCH_NAME="Fix for touch-vtt issue #61" | |
| log "Applying \"${PATCH_NAME}\"" | |
| log "See: ${PATCH_DOC_URL}" |
| #!/bin/bash | |
| # Initial list of domains | |
| DOMAINS=("api.foundryvtt.com" | |
| "foundryvtt.com" | |
| "foundryvtt.s3.amazonaws.com" | |
| "foundryvtt.s3.dualstack.us-west-2.amazonaws.com") | |
| # Print the table header | |
| echo "| Name | \`A\` | \`AAAA\` | Notes |" |
| #!/bin/sh | |
| log_debug "This is a debug message." | |
| log "This is an info message." | |
| log_warn "This is a warning message." | |
| log_error "This is an error message." |
| def init(id, cfg): | |
| return True | |
| def deinit(id): | |
| return True | |
| def inform_super(id, qstate, superqstate, qdata): | |
| return True | |
| domains = [ |