Every cisagov project descends from a skeleton. skeleton-generic is
the root; skeleton-python-library, skeleton-docker,
skeleton-ansible-role, skeleton-tf-module, skeleton-packer, and
friends layer on top of it; and hundreds of real projects layer on top
of those.
This workspace uses Starship as the shell prompt, which can produce complex, multi-line output that interferes with terminal command parsing. Always run starship-off at the start of every new terminal session before executing any commands.
# Run this first in every new terminal session
starship-off
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Config utility: https://pypi.org/project/Ultimarc/
Reading:
sudo ultimarc ipac2 --get-config --indent 4Important
The input file is realative to site-packages.
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
| --- /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)) { |
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
| #!/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). |
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
| --- | |
| name: "Repo Tickle Action" | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| tickle-the-repo: | |
| name: "Tickling the Repo 🪶" |
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 | |
| # 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="14.360" | |
| TARGET_VERSION_MAJOR=$(echo "$TARGET_VERSION" | cut -d. -f1) | |
| export PATH="/tmp/npm-local/node_modules/.bin:$PATH" |
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/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}" |
NewerOlder