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
{%- set excluded_ips = [ | |
'^192\.168\.8\.', | |
'^192\.168\.25\.', | |
'^192\.168\.105\.' | |
] -%} | |
{ | |
{% for host in groups['all'] %} | |
{%- set ip = hostvars[host]['ansible_host'] | default(host) -%} | |
{%- if ip is not match(excluded_ips | join('|')) and host != 'localhost' and host != 'lance@orb' %} | |
"{{ ip }}": { |
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 python | |
import http.server | |
import os | |
import socketserver | |
from pathlib import Path | |
PORT = 8000 | |
if os.getenv("WORK_DIR") is not None: |
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
#cloud-config | |
# QCow2 UEFI/GPT Bootable disk image | |
# https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img | |
output: { all: '| tee -a /var/log/cloud-init.log' } | |
timezone: "America/Chicago" | |
hostname: ubuntu |
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 bash | |
set -e | |
help() { | |
cat <<- DESCRIPTION >&2 | |
Shim to run nikto in a container. | |
SETUP | |
git clone https://github.com/sullo/nikto |
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
// Zed keymap | |
// | |
// For information on binding keys, see the Zed | |
// documentation: https://zed.dev/docs/key-bindings | |
// | |
// To see the default key bindings run `zed: open default keymap` | |
// from the command palette. | |
[ | |
// Standard bindings | |
{ |
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
id: editor | |
namespace: company.team | |
tasks: | |
- id: hello | |
type: io.kestra.plugin.scripts.python.Script | |
namespaceFiles: | |
enabled: true | |
script: "{{ read('scripts/hello.py') }}" |
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
id: ansible | |
namespace: company.team | |
tasks: | |
- id: ansible_task | |
type: io.kestra.plugin.ansible.cli.AnsibleCLI | |
inputFiles: | |
inventory.ini: | | |
localhost ansible_connection=local | |
myplaybook.yml: | |
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 python | |
import sys | |
import csv | |
import re | |
from pathlib import Path | |
python_script = Path(sys.argv[0]) | |
vault_path = Path(sys.argv[1] if len(sys.argv) > 1 else "../../..").resolve() | |
file_path = Path(sys.argv[2] if len(sys.argv) > 2 else ".").resolve() |
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
services: | |
cosmos-server: | |
image: azukaar/cosmos-server:latest | |
container_name: cosmos-server | |
hostname: cosmos-server | |
restart: on-failure:3 | |
# ports: | |
# - 80:80 | |
# - 443:443 | |
# - 4242:4242/udp |
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 bash | |
set -euo pipefail | |
# trap exit signals 2, 1, 15 | |
trap "exit" SIGINT SIGHUP SIGTERM | |
cat << 'DESCRIPTION' >/dev/null | |
USAGE: | |
backup.sh [SRC] [DEST] [EXT] [TLD] [SUB_DIR] [LOG_PATH] |