Compare commits
10 Commits
f82bfe8c8f
...
511217c7b3
| Author | SHA1 | Date | |
|---|---|---|---|
| 511217c7b3 | |||
| d4f306480e | |||
| 25b17c69ee | |||
| e632abfb25 | |||
| 2d4030b066 | |||
| 21ffd91fff | |||
| a4c5009293 | |||
| 93126cd9fb | |||
| 9b6c02b5be | |||
| 50be60e66f |
13
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"python.languageServer": "Pylance",
|
||||
"python.linting.pylintEnabled": false,
|
||||
"python.analysis.diagnosticSeverityOverrides": {
|
||||
"reportMissingModuleSource": "none"
|
||||
},
|
||||
"python.analysis.extraPaths": [
|
||||
"",
|
||||
"/home/wholteza/.vscode/extensions/joedevivo.vscode-circuitpython-0.1.20-linux-x64/stubs",
|
||||
"/home/wholteza/.config/Code/User/globalStorage/joedevivo.vscode-circuitpython/bundle/20230802/adafruit-circuitpython-bundle-py-20230802/lib"
|
||||
],
|
||||
"circuitpython.board.version": null
|
||||
}
|
||||
@@ -2,6 +2,7 @@
|
||||
./helpers/get-passwords.sh
|
||||
|
||||
ansible-vault decrypt vars/bootstrap.yaml --vault-password-file ./.passwords/vault
|
||||
ansible-vault decrypt vars/vault.yaml --vault-password-file ./.passwords/vault
|
||||
ansible-vault decrypt vars/bigboi.yaml --vault-password-file ./.passwords/vault
|
||||
ansible-vault decrypt vars/smolboi.yaml --vault-password-file ./.passwords/vault
|
||||
|
||||
./helpers/delete-passwords.sh
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
./helpers/get-passwords.sh
|
||||
|
||||
ansible-vault encrypt vars/bootstrap.yaml --vault-password-file ./.passwords/vault
|
||||
ansible-vault encrypt vars/vault.yaml --vault-password-file ./.passwords/vault
|
||||
ansible-vault encrypt vars/bigboi.yaml --vault-password-file ./.passwords/vault
|
||||
ansible-vault encrypt vars/smolboi.yaml --vault-password-file ./.passwords/vault
|
||||
|
||||
./helpers/delete-passwords.sh
|
||||
|
||||
@@ -1,11 +1,16 @@
|
||||
#!/bin/bash
|
||||
# TODO: Clean this up so it iterates over the vars files
|
||||
if grep -qE "vault_decrypted: true" "./vars/vault.yaml";then
|
||||
if grep -qE "vault_decrypted: true" "./vars/bigboi.yaml";then
|
||||
echo "The vault isn't encrypted, run './encrypt-vault.sh' before committing."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if grep -qE "vault_decrypted: true" "./vars/vault.yaml";then
|
||||
if grep -qE "vault_decrypted: true" "./vars/bootstrap.yaml";then
|
||||
echo "The vault isn't encrypted, run './encrypt-vault.sh' before committing."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if grep -qE "vault_decrypted: true" "./vars/smolboi.yaml";then
|
||||
echo "The vault isn't encrypted, run './encrypt-vault.sh' before committing."
|
||||
exit 1
|
||||
fi
|
||||
@@ -1,2 +1,5 @@
|
||||
[prod]
|
||||
[production_main]
|
||||
bigboi.zacke.xyz
|
||||
|
||||
[production_first_backup]
|
||||
smolboi.zacke.xyz
|
||||
|
||||
63
main.yaml
@@ -1,29 +1,46 @@
|
||||
---
|
||||
- hosts: all
|
||||
become: true
|
||||
remote_user: wholteza
|
||||
roles:
|
||||
- role: bootstrap
|
||||
vars_files:
|
||||
- vars/bootstrap.yaml
|
||||
# - hosts: all
|
||||
# become: true
|
||||
# remote_user: wholteza
|
||||
# roles:
|
||||
# - role: shared/bootstrap
|
||||
# vars_files:
|
||||
# - vars/bootstrap.yaml
|
||||
|
||||
- hosts: prod
|
||||
- hosts: production_main
|
||||
become: true
|
||||
roles:
|
||||
# - role: base
|
||||
# - role: users
|
||||
# - role: network
|
||||
- role: nginx
|
||||
# - role: ssmtp
|
||||
# - role: zfs
|
||||
# - role: zfs-zed
|
||||
# - role: samba
|
||||
# - role: sanoid
|
||||
# - role: powertop
|
||||
# - role: apcupsd
|
||||
# - role: libvirt
|
||||
# - role: kvm-homeassistant
|
||||
# - role: docker
|
||||
# - role: shared/update
|
||||
- role: bigboi/users
|
||||
# - role: bigboi/network
|
||||
# - role: shared/avahi
|
||||
# - role: bigboi/nginx
|
||||
# - role: shared/ssmtp
|
||||
- role: bigboi/zfs
|
||||
# - role: shared/zfs-zed
|
||||
# - role: bigboi/samba
|
||||
# - role: bigboi/sanoid
|
||||
# - role: shared/powertop
|
||||
# - role: bigboi/apcupsd
|
||||
# - role: bigboi/libvirt
|
||||
# - role: bigboi/kvm-homeassistant
|
||||
- role: bigboi/docker
|
||||
# - role: artis3n.tailscale
|
||||
# - role: shared/various-cli-tools
|
||||
vars_files:
|
||||
- vars/vault.yaml
|
||||
- vars/bigboi.yaml
|
||||
|
||||
- hosts: production_first_backup
|
||||
become: true
|
||||
roles:
|
||||
# - role: shared/update
|
||||
# - role: shared/powertop
|
||||
# - role: shared/avahi
|
||||
# - role: shared/ssmtp
|
||||
# - role: shared/zfs-install
|
||||
# - role: smolboi/zfs
|
||||
# - role: shared/zfs-zed
|
||||
# - role: smolboi/sanoid
|
||||
# - role: shared/various-cli-tools
|
||||
vars_files:
|
||||
- vars/smolboi.yaml
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
## Installing and running
|
||||
Prior to following the steps below you need to set up the ssh agent to work with the gpg key from you yubikey and also the `pass` password store.
|
||||
|
||||
Prior to following the steps below you need to set up the ssh agent to work with the gpg key from your yubikey and also the `pass` password store.
|
||||
|
||||
1. Install the required packages with `install-requirements.sh`
|
||||
2. Run the playbook `run-playbook.sh`
|
||||
- The script automatically fetches the required passwords from the password store
|
||||
- The script automatically fetches the required passwords from the password store
|
||||
|
||||
The playbook requires the user `ansible` to be present on the target systems with the yubikey ssh key as authorized key and member of the sudoers group.
|
||||
|
||||
@@ -12,6 +13,7 @@ The required password to be set on the ansible user can be found in `pass wholte
|
||||
While running fetched passwords will be placed in the `.temp` directory. Any script that creates that directory must delete it afterwards.
|
||||
|
||||
## Making changes to the vault
|
||||
|
||||
The vault encryption is managed by `ansible-vault` + passwords from `pass`.
|
||||
|
||||
Use `./decrypt-vault.sh` and `./encrypt-vault.sh` to make the file into clear text and the other way around.
|
||||
|
||||
@@ -28,6 +28,36 @@
|
||||
group: root
|
||||
register: frigate_config_file
|
||||
|
||||
# Grafana directory
|
||||
- name: Ensure grafana config dir
|
||||
file:
|
||||
path: "{{docker.grafana.data_volume}}"
|
||||
state: directory
|
||||
owner: docker
|
||||
group: root
|
||||
|
||||
# InfluxDB directory
|
||||
- name: Ensure influxdb config dir
|
||||
file:
|
||||
path: "{{docker.influxdb.data_volume}}"
|
||||
state: directory
|
||||
owner: docker
|
||||
group: root
|
||||
|
||||
- name: Ensure photoprism config dir
|
||||
file:
|
||||
path: "{{docker.photoprism.data_volume}}"
|
||||
state: directory
|
||||
owner: photoprism
|
||||
group: root
|
||||
|
||||
- name: Ensure mariadb config dir
|
||||
file:
|
||||
path: "{{docker.mariadb.data_volume}}"
|
||||
state: directory
|
||||
owner: photoprism
|
||||
group: root
|
||||
|
||||
# Docker service setup
|
||||
- name: Install requirements
|
||||
apt:
|
||||
187
roles/bigboi/docker/templates/docker-compose.yml
Normal file
@@ -0,0 +1,187 @@
|
||||
version: "3.1"
|
||||
services:
|
||||
unifi-controller:
|
||||
image: lscr.io/linuxserver/unifi-controller:7.2.92
|
||||
environment:
|
||||
- PUID=1400
|
||||
- MEM_LIMIT=1024
|
||||
- MEM_STARTUP=1024
|
||||
volumes:
|
||||
- "{{docker.volumes_path}}/unifi_controller:/config"
|
||||
ports:
|
||||
- 8443:8443
|
||||
- 3478:3478/udp
|
||||
- 10001:10001/udp
|
||||
- 8080:8080
|
||||
- 1900:1900/udp
|
||||
- 8843:8843
|
||||
- 8880:8880
|
||||
- 6789:6789
|
||||
- 5514:5514/udp
|
||||
restart: always
|
||||
plex:
|
||||
image: lscr.io/linuxserver/plex:latest
|
||||
container_name: plex
|
||||
environment:
|
||||
- PUID=1400 # docker
|
||||
- PGID=1202 # warez
|
||||
- TZ=Etc/UTC
|
||||
- VERSION=docker
|
||||
volumes:
|
||||
- "{{docker.plex.config_volume}}/plex:/config"
|
||||
- "{{docker.plex.tv_volume}}:/tv"
|
||||
- "{{docker.plex.movies_volume}}:/movies"
|
||||
restart: unless-stopped
|
||||
# This makes the instance claiming a lot easier since you can access the host on the same subnet.
|
||||
network_mode: host
|
||||
frigate:
|
||||
container_name: frigate
|
||||
privileged: true # this may not be necessary for all setups
|
||||
restart: unless-stopped
|
||||
image: ghcr.io/blakeblackshear/frigate:stable
|
||||
shm_size: "150mb" # update for your cameras based on calculation in docs
|
||||
devices:
|
||||
#- /dev/bus/usb:/dev/bus/usb # passes the USB Coral, needs to be modified for other versions
|
||||
# /dev/apex_0:/dev/apex_0 # passes a PCIe Coral, follow driver instructions here https://coral.ai/docs/m2/get-started/#2a-on-linux
|
||||
- /dev/dri/renderD128 # for intel hwaccel, needs to be updated for your hardware
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- "{{docker.frigate.config_volume}}/config.yml:/config/config.yml"
|
||||
- "{{docker.frigate.media_volume}}:/media/frigate"
|
||||
- type: tmpfs # Optional: 2GB of memory, reduces SSD/SD Card wear
|
||||
target: /tmp/cache
|
||||
tmpfs:
|
||||
size: 2000000000
|
||||
ports:
|
||||
- "5000:5000"
|
||||
- "8554:8554" # RTSP feeds
|
||||
- "8555:8555/tcp" # WebRTC over tcp
|
||||
- "8555:8555/udp" # WebRTC over udp
|
||||
environment:
|
||||
FRIGATE_RTSP_PASSWORD: "{{docker.frigate.rtsp_password}}"
|
||||
influxdb:
|
||||
image: influxdb:1.8-alpine
|
||||
container_name: influxdb
|
||||
restart: always
|
||||
environment:
|
||||
- INFLUXDB_DB=influx
|
||||
- INFLUXDB_ADMIN_USER=admin
|
||||
- "INFLUXDB_ADMIN_PASSWORD={{docker.influxdb.admin_password}}"
|
||||
ports:
|
||||
- "8086:8086"
|
||||
volumes:
|
||||
- "{{docker.influxdb.data_volume}}:/var/lib/influxdb"
|
||||
grafana:
|
||||
image: grafana/grafana
|
||||
container_name: grafana
|
||||
restart: always
|
||||
depends_on:
|
||||
- influxdb
|
||||
environment:
|
||||
- GF_SECURITY_ADMIN_USER=admin
|
||||
- "GF_SECURITY_ADMIN_PASSWORD={{docker.grafana.admin_password}}"
|
||||
- GF_INSTALL_PLUGINS=
|
||||
links:
|
||||
- influxdb
|
||||
ports:
|
||||
- "3000:3000"
|
||||
volumes:
|
||||
- "{{docker.grafana.data_volume}}:/var/lib/grafana"
|
||||
user: "1400" # docker
|
||||
photoprism:
|
||||
container_name: photoprism
|
||||
user: "1401:1201" # photoprism
|
||||
image: photoprism/photoprism:latest
|
||||
# restart: unless-stopped
|
||||
stop_grace_period: 10s
|
||||
depends_on:
|
||||
- mariadb
|
||||
security_opt:
|
||||
- seccomp:unconfined
|
||||
- apparmor:unconfined
|
||||
ports:
|
||||
- "2342:2342" # HTTP port (host:container)
|
||||
environment:
|
||||
PHOTOPRISM_ADMIN_USER: "wholteza" # admin login username
|
||||
PHOTOPRISM_ADMIN_PASSWORD: "{{docker.photoprism.admin_password}}" # initial admin password (8-72 characters)
|
||||
PHOTOPRISM_AUTH_MODE: "password" # authentication mode (public, password)
|
||||
PHOTOPRISM_SITE_URL: "http://bigboi.zacke.xyz:2342/" # server URL in the format "http(s)://domain.name(:port)/(path)"
|
||||
PHOTOPRISM_DISABLE_TLS: "false" # disables HTTPS/TLS even if the site URL starts with https:// and a certificate is available
|
||||
PHOTOPRISM_DEFAULT_TLS: "true" # defaults to a self-signed HTTPS/TLS certificate if no other certificate is available
|
||||
PHOTOPRISM_ORIGINALS_LIMIT: 5000 # file size limit for originals in MB (increase for high-res video)
|
||||
PHOTOPRISM_HTTP_COMPRESSION: "gzip" # improves transfer speed and bandwidth utilization (none or gzip)
|
||||
PHOTOPRISM_LOG_LEVEL: "warning" # log level: trace, debug, info, warning, error, fatal, or panic
|
||||
PHOTOPRISM_READONLY: "false" # do not modify originals directory (reduced functionality)
|
||||
PHOTOPRISM_EXPERIMENTAL: "false" # enables experimental features
|
||||
PHOTOPRISM_DISABLE_CHOWN: "false" # disables updating storage permissions via chmod and chown on startup
|
||||
PHOTOPRISM_DISABLE_WEBDAV: "false" # disables built-in WebDAV server
|
||||
PHOTOPRISM_DISABLE_SETTINGS: "false" # disables settings UI and API
|
||||
PHOTOPRISM_DISABLE_TENSORFLOW: "false" # disables all features depending on TensorFlow
|
||||
PHOTOPRISM_DISABLE_FACES: "false" # disables face detection and recognition (requires TensorFlow)
|
||||
PHOTOPRISM_DISABLE_CLASSIFICATION: "false" # disables image classification (requires TensorFlow)
|
||||
PHOTOPRISM_DISABLE_VECTORS: "false" # disables vector graphics support
|
||||
PHOTOPRISM_DISABLE_RAW: "false" # disables indexing and conversion of RAW images
|
||||
PHOTOPRISM_RAW_PRESETS: "false" # enables applying user presets when converting RAW images (reduces performance)
|
||||
PHOTOPRISM_JPEG_QUALITY: 85 # a higher value increases the quality and file size of JPEG images and thumbnails (25-100)
|
||||
PHOTOPRISM_DETECT_NSFW: "false" # automatically flags photos as private that MAY be offensive (requires TensorFlow)
|
||||
PHOTOPRISM_UPLOAD_NSFW: "true" # allows uploads that MAY be offensive (no effect without TensorFlow)
|
||||
# PHOTOPRISM_DATABASE_DRIVER: "sqlite" # SQLite is an embedded database that doesn't require a server
|
||||
PHOTOPRISM_DATABASE_DRIVER: "mysql" # use MariaDB 10.5+ or MySQL 8+ instead of SQLite for improved performance
|
||||
PHOTOPRISM_DATABASE_SERVER: "mariadb:3306" # MariaDB or MySQL database server (hostname:port)
|
||||
PHOTOPRISM_DATABASE_NAME: "photoprism" # MariaDB or MySQL database schema name
|
||||
PHOTOPRISM_DATABASE_USER: "photoprism" # MariaDB or MySQL database user name
|
||||
PHOTOPRISM_DATABASE_PASSWORD: "{{docker.mariadb.database_password}}" # MariaDB or MySQL database user password
|
||||
PHOTOPRISM_SITE_CAPTION: "AI-Powered Photos App"
|
||||
PHOTOPRISM_SITE_DESCRIPTION: "" # meta site description
|
||||
PHOTOPRISM_SITE_AUTHOR: "" # meta site author
|
||||
## Video Transcoding (https://docs.photoprism.app/getting-started/advanced/transcoding/):
|
||||
# PHOTOPRISM_FFMPEG_ENCODER: "software" # H.264/AVC encoder (software, intel, nvidia, apple, raspberry, or vaapi)
|
||||
# PHOTOPRISM_FFMPEG_SIZE: "1920" # video size limit in pixels (720-7680) (default: 3840)
|
||||
# PHOTOPRISM_FFMPEG_BITRATE: "32" # video bitrate limit in Mbit/s (default: 50)
|
||||
## Run/install on first startup (options: update https gpu tensorflow davfs clitools clean):
|
||||
# PHOTOPRISM_INIT: "https gpu tensorflow"
|
||||
## Run as a non-root user after initialization (supported: 0, 33, 50-99, 500-600, and 900-1200):
|
||||
# PHOTOPRISM_UID: 1000
|
||||
# PHOTOPRISM_GID: 1000
|
||||
# PHOTOPRISM_UMASK: 0000
|
||||
## Start as non-root user before initialization (supported: 0, 33, 50-99, 500-600, and 900-1200):
|
||||
# user: "1000:1000"
|
||||
## Share hardware devices with FFmpeg and TensorFlow (optional):
|
||||
# devices:
|
||||
# - "/dev/dri:/dev/dri" # Intel QSV
|
||||
# - "/dev/nvidia0:/dev/nvidia0" # Nvidia CUDA
|
||||
# - "/dev/nvidiactl:/dev/nvidiactl"
|
||||
# - "/dev/nvidia-modeset:/dev/nvidia-modeset"
|
||||
# - "/dev/nvidia-nvswitchctl:/dev/nvidia-nvswitchctl"
|
||||
# - "/dev/nvidia-uvm:/dev/nvidia-uvm"
|
||||
# - "/dev/nvidia-uvm-tools:/dev/nvidia-uvm-tools"
|
||||
# - "/dev/video11:/dev/video11" # Video4Linux Video Encode Device (h264_v4l2m2m)
|
||||
working_dir: "/photoprism" # do not change or remove
|
||||
## Storage Folders: "~" is a shortcut for your home directory, "." for the current directory
|
||||
volumes:
|
||||
# "/host/folder:/photoprism/folder" # Example
|
||||
- "{{docker.photoprism.image_volumes.lilleback}}:/photoprism/originals" # Original media files (DO NOT REMOVE)
|
||||
- "{{docker.photoprism.image_volumes.ellen}}:/photoprism/originals/ellen" # Original media files (DO NOT REMOVE)
|
||||
# - "/example/family:/photoprism/originals/family" # *Additional* media folders can be mounted like this
|
||||
# - "~/Import:/photoprism/import" # *Optional* base folder from which files can be imported to originals
|
||||
- "{{docker.photoprism.data_volume}}:/photoprism/storage" # *Writable* storage folder for cache, database, and sidecar files (DO NOT REMOVE)
|
||||
|
||||
mariadb:
|
||||
container_name: mariadb
|
||||
user: "1401" # photoprism
|
||||
image: mariadb:11
|
||||
restart: unless-stopped
|
||||
stop_grace_period: 5s
|
||||
security_opt: # see https://github.com/MariaDB/mariadb-docker/issues/434#issuecomment-1136151239
|
||||
- seccomp:unconfined
|
||||
- apparmor:unconfined
|
||||
command: --innodb-buffer-pool-size=512M --transaction-isolation=READ-COMMITTED --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --max-connections=512 --innodb-rollback-on-timeout=OFF --innodb-lock-wait-timeout=120
|
||||
volumes:
|
||||
- "{{docker.mariadb.data_volume}}:/var/lib/mysql"
|
||||
environment:
|
||||
MARIADB_AUTO_UPGRADE: "1"
|
||||
MARIADB_INITDB_SKIP_TZINFO: "1"
|
||||
MARIADB_DATABASE: "photoprism"
|
||||
MARIADB_USER: "photoprism"
|
||||
MARIADB_PASSWORD: "{{docker.mariadb.database_password}}"
|
||||
MARIADB_ROOT_PASSWORD: "{{docker.mariadb.database_password}}"
|
||||
@@ -1,13 +1,3 @@
|
||||
- name: install requirements
|
||||
apt:
|
||||
name: avahi-daemon
|
||||
|
||||
- name: enable avahi daemon
|
||||
systemd:
|
||||
name: avahi-daemon
|
||||
enabled: yes
|
||||
state: started
|
||||
|
||||
- name: ensure ipv4 ip forwarding is enabled in the kernel
|
||||
ansible.posix.sysctl:
|
||||
name: "net.ipv4.ip_forward"
|
||||
@@ -43,4 +33,4 @@
|
||||
when: netplan_config.changed
|
||||
systemd:
|
||||
name: systemd-networkd
|
||||
state: restarted
|
||||
state: restarted
|
||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
@@ -41,6 +41,14 @@ body {
|
||||
.icon {
|
||||
max-width: 120px;
|
||||
min-width: 120px;
|
||||
max-height: 120px;
|
||||
min-height: 120px;
|
||||
}
|
||||
.icon svg {
|
||||
max-width: 120px;
|
||||
min-width: 120px;
|
||||
max-height: 120px;
|
||||
min-height: 120px;
|
||||
}
|
||||
|
||||
.icon {
|
||||
153
roles/bigboi/nginx/files/html/index.html
Normal file
@@ -0,0 +1,153 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Bigboi</title>
|
||||
<link rel="stylesheet" href="index.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Welcome to Bigboi!</h1>
|
||||
<p>This is the landing page for all web services hosted on this network.</p>
|
||||
|
||||
<p>Press any of the links below to go to the service</p>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="icon"><img src="opnsense.png" /></div>
|
||||
<div class="info">
|
||||
<div class="info-title">OPNSense</div>
|
||||
<div class="info-value"><a href="https://opnsense.zacke.xyz" target="_blank">LAN DNS
|
||||
</a></div>
|
||||
<div class="info-value"><a href="https://192.168.2.1" target="_blank">LAN IP</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="icon"><img src="homeassistant.png" /></div>
|
||||
<div class="info">
|
||||
<div class="info-title">Homeassistant</div>
|
||||
<div class="info-value"><a href="http://homeassistant.zacke.xyz:8123" target="_blank">LAN DNS
|
||||
</a></div>
|
||||
<div class="info-value"><a href="https://opnsense.zacke.xyz" target="_blank">LAN IP</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="icon"><svg viewBox="0 0 512 512" class="fill-current">
|
||||
<path
|
||||
d="M130 446.5C131.6 459.3 145 468 137 470C129 472 94 406.5 86 378.5C78 350.5 73.5 319 75.5 301C77.4999 283 181 255 181 247.5C181 240 147.5 247 146 241C144.5 235 171.3 238.6 178.5 229C189.75 214 204 216.5 213 208.5C222 200.5 233 170 235 157C237 144 215 129 209 119C203 109 222 102 268 83C314 64 460 22 462 27C464 32 414 53 379 66C344 79 287 104 287 111C287 118 290 123.5 288 139.5C286 155.5 285.76 162.971 282 173.5C279.5 180.5 277 197 282 212C286 224 299 233 305 235C310 235.333 323.8 235.8 339 235C358 234 385 236 385 241C385 246 344 243 344 250C344 257 386 249 385 256C384 263 350 260 332 260C317.6 260 296.333 259.333 287 256L285 263C281.667 263 274.7 265 267.5 265C258.5 265 258 268 241.5 268C225 268 230 267 215 266C200 265 144 308 134 322C124 336 130 370 130 385.5C130 399.428 128 430.5 130 446.5Z">
|
||||
</path>
|
||||
</svg></div>
|
||||
<div class="info">
|
||||
<div class="info-title">Frigate NVR</div>
|
||||
<div class="info-value"><a href="http://bigboi.zacke.xyz:5000" target="_blank">LAN DNS
|
||||
</a></div>
|
||||
<div class="info-value"><a href="http://192.168.2.5:5000" target="_blank">LAN IP</a></div>
|
||||
<div class="info-value"><a href="http://bigboi.ocelot-pirate.ts.net:5000" target="_blank">Tailscale DNS</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="icon"><img src="unifi.png" /></div>
|
||||
<div class="info">
|
||||
<div class="info-title">Unifi</div>
|
||||
<div class="info-value"><a href="http://bigboi.zacke.xyz:8080" target="_blank">LAN DNS
|
||||
</a></div>
|
||||
<div class="info-value"><a href="http://192.168.2.5:8080" target="_blank">LAN IP</a></div>
|
||||
<div class="info-value"><a href="http://bigboi.ocelot-pirate.ts.net:8080" target="_blank">Tailscale DNS</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="icon"><img src="plex.png" /></div>
|
||||
<div class="info">
|
||||
<div class="info-title">Plex</div>
|
||||
<div class="info-value"><a href="http://bigboi.zacke.xyz:32400" target="_blank">LAN DNS
|
||||
</a></div>
|
||||
<div class="info-value"><a href="http://192.168.2.5:32400" target="_blank">LAN IP</a></div>
|
||||
<div class="info-value"><a href="http://bigboi.ocelot-pirate.ts.net:32400" target="_blank">Tailscale DNS</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="icon"><img src="photoprism.svg" /></div>
|
||||
<div class="info">
|
||||
<div class="info-title">Photoprism</div>
|
||||
<div class="info-value"><a href="http://bigboi.zacke.xyz:2342" target="_blank">LAN DNS
|
||||
</a></div>
|
||||
<div class="info-value"><a href="http://192.168.2.5:2342" target="_blank">LAN IP</a></div>
|
||||
<div class="info-value"><a href="http://bigboi.ocelot-pirate.ts.net:2342" target="_blank">Tailscale DNS</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="icon"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="351px" height="365px" viewBox="0 0 351 365"
|
||||
style="enable-background:new 0 0 351 365;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0 {
|
||||
fill: url(#SVGID_1_);
|
||||
}
|
||||
</style>
|
||||
<g id="Layer_1_1_">
|
||||
</g>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="175.5" y1="30%" x2="175.5" y2="99%">
|
||||
<stop offset="0" style="stop-color:#F05A28" />
|
||||
<stop offset="1" style="stop-color:#FBCA0A" />
|
||||
</linearGradient>
|
||||
<path class="st0" d="M342,161.2c-0.6-6.1-1.6-13.1-3.6-20.9c-2-7.7-5-16.2-9.4-25c-4.4-8.8-10.1-17.9-17.5-26.8
|
||||
c-2.9-3.5-6.1-6.9-9.5-10.2c5.1-20.3-6.2-37.9-6.2-37.9c-19.5-1.2-31.9,6.1-36.5,9.4c-0.8-0.3-1.5-0.7-2.3-1
|
||||
c-3.3-1.3-6.7-2.6-10.3-3.7c-3.5-1.1-7.1-2.1-10.8-3c-3.7-0.9-7.4-1.6-11.2-2.2c-0.7-0.1-1.3-0.2-2-0.3
|
||||
c-8.5-27.2-32.9-38.6-32.9-38.6c-27.3,17.3-32.4,41.5-32.4,41.5s-0.1,0.5-0.3,1.4c-1.5,0.4-3,0.9-4.5,1.3c-2.1,0.6-4.2,1.4-6.2,2.2
|
||||
c-2.1,0.8-4.1,1.6-6.2,2.5c-4.1,1.8-8.2,3.8-12.2,6c-3.9,2.2-7.7,4.6-11.4,7.1c-0.5-0.2-1-0.4-1-0.4c-37.8-14.4-71.3,2.9-71.3,2.9
|
||||
c-3.1,40.2,15.1,65.5,18.7,70.1c-0.9,2.5-1.7,5-2.5,7.5c-2.8,9.1-4.9,18.4-6.2,28.1c-0.2,1.4-0.4,2.8-0.5,4.2
|
||||
C18.8,192.7,8.5,228,8.5,228c29.1,33.5,63.1,35.6,63.1,35.6c0,0,0.1-0.1,0.1-0.1c4.3,7.7,9.3,15,14.9,21.9c2.4,2.9,4.8,5.6,7.4,8.3
|
||||
c-10.6,30.4,1.5,55.6,1.5,55.6c32.4,1.2,53.7-14.2,58.2-17.7c3.2,1.1,6.5,2.1,9.8,2.9c10,2.6,20.2,4.1,30.4,4.5
|
||||
c2.5,0.1,5.1,0.2,7.6,0.1l1.2,0l0.8,0l1.6,0l1.6-0.1l0,0.1c15.3,21.8,42.1,24.9,42.1,24.9c19.1-20.1,20.2-40.1,20.2-44.4l0,0
|
||||
c0,0,0-0.1,0-0.3c0-0.4,0-0.6,0-0.6l0,0c0-0.3,0-0.6,0-0.9c4-2.8,7.8-5.8,11.4-9.1c7.6-6.9,14.3-14.8,19.9-23.3
|
||||
c0.5-0.8,1-1.6,1.5-2.4c21.6,1.2,36.9-13.4,36.9-13.4c-3.6-22.5-16.4-33.5-19.1-35.6l0,0c0,0-0.1-0.1-0.3-0.2
|
||||
c-0.2-0.1-0.2-0.2-0.2-0.2c0,0,0,0,0,0c-0.1-0.1-0.3-0.2-0.5-0.3c0.1-1.4,0.2-2.7,0.3-4.1c0.2-2.4,0.2-4.9,0.2-7.3l0-1.8l0-0.9
|
||||
l0-0.5c0-0.6,0-0.4,0-0.6l-0.1-1.5l-0.1-2c0-0.7-0.1-1.3-0.2-1.9c-0.1-0.6-0.1-1.3-0.2-1.9l-0.2-1.9l-0.3-1.9
|
||||
c-0.4-2.5-0.8-4.9-1.4-7.4c-2.3-9.7-6.1-18.9-11-27.2c-5-8.3-11.2-15.6-18.3-21.8c-7-6.2-14.9-11.2-23.1-14.9
|
||||
c-8.3-3.7-16.9-6.1-25.5-7.2c-4.3-0.6-8.6-0.8-12.9-0.7l-1.6,0l-0.4,0c-0.1,0-0.6,0-0.5,0l-0.7,0l-1.6,0.1c-0.6,0-1.2,0.1-1.7,0.1
|
||||
c-2.2,0.2-4.4,0.5-6.5,0.9c-8.6,1.6-16.7,4.7-23.8,9c-7.1,4.3-13.3,9.6-18.3,15.6c-5,6-8.9,12.7-11.6,19.6c-2.7,6.9-4.2,14.1-4.6,21
|
||||
c-0.1,1.7-0.1,3.5-0.1,5.2c0,0.4,0,0.9,0,1.3l0.1,1.4c0.1,0.8,0.1,1.7,0.2,2.5c0.3,3.5,1,6.9,1.9,10.1c1.9,6.5,4.9,12.4,8.6,17.4
|
||||
c3.7,5,8.2,9.1,12.9,12.4c4.7,3.2,9.8,5.5,14.8,7c5,1.5,10,2.1,14.7,2.1c0.6,0,1.2,0,1.7,0c0.3,0,0.6,0,0.9,0c0.3,0,0.6,0,0.9-0.1
|
||||
c0.5,0,1-0.1,1.5-0.1c0.1,0,0.3,0,0.4-0.1l0.5-0.1c0.3,0,0.6-0.1,0.9-0.1c0.6-0.1,1.1-0.2,1.7-0.3c0.6-0.1,1.1-0.2,1.6-0.4
|
||||
c1.1-0.2,2.1-0.6,3.1-0.9c2-0.7,4-1.5,5.7-2.4c1.8-0.9,3.4-2,5-3c0.4-0.3,0.9-0.6,1.3-1c1.6-1.3,1.9-3.7,0.6-5.3
|
||||
c-1.1-1.4-3.1-1.8-4.7-0.9c-0.4,0.2-0.8,0.4-1.2,0.6c-1.4,0.7-2.8,1.3-4.3,1.8c-1.5,0.5-3.1,0.9-4.7,1.2c-0.8,0.1-1.6,0.2-2.5,0.3
|
||||
c-0.4,0-0.8,0.1-1.3,0.1c-0.4,0-0.9,0-1.2,0c-0.4,0-0.8,0-1.2,0c-0.5,0-1,0-1.5-0.1c0,0-0.3,0-0.1,0l-0.2,0l-0.3,0
|
||||
c-0.2,0-0.5,0-0.7-0.1c-0.5-0.1-0.9-0.1-1.4-0.2c-3.7-0.5-7.4-1.6-10.9-3.2c-3.6-1.6-7-3.8-10.1-6.6c-3.1-2.8-5.8-6.1-7.9-9.9
|
||||
c-2.1-3.8-3.6-8-4.3-12.4c-0.3-2.2-0.5-4.5-0.4-6.7c0-0.6,0.1-1.2,0.1-1.8c0,0.2,0-0.1,0-0.1l0-0.2l0-0.5c0-0.3,0.1-0.6,0.1-0.9
|
||||
c0.1-1.2,0.3-2.4,0.5-3.6c1.7-9.6,6.5-19,13.9-26.1c1.9-1.8,3.9-3.4,6-4.9c2.1-1.5,4.4-2.8,6.8-3.9c2.4-1.1,4.8-2,7.4-2.7
|
||||
c2.5-0.7,5.1-1.1,7.8-1.4c1.3-0.1,2.6-0.2,4-0.2c0.4,0,0.6,0,0.9,0l1.1,0l0.7,0c0.3,0,0,0,0.1,0l0.3,0l1.1,0.1
|
||||
c2.9,0.2,5.7,0.6,8.5,1.3c5.6,1.2,11.1,3.3,16.2,6.1c10.2,5.7,18.9,14.5,24.2,25.1c2.7,5.3,4.6,11,5.5,16.9c0.2,1.5,0.4,3,0.5,4.5
|
||||
l0.1,1.1l0.1,1.1c0,0.4,0,0.8,0,1.1c0,0.4,0,0.8,0,1.1l0,1l0,1.1c0,0.7-0.1,1.9-0.1,2.6c-0.1,1.6-0.3,3.3-0.5,4.9
|
||||
c-0.2,1.6-0.5,3.2-0.8,4.8c-0.3,1.6-0.7,3.2-1.1,4.7c-0.8,3.1-1.8,6.2-3,9.3c-2.4,6-5.6,11.8-9.4,17.1
|
||||
c-7.7,10.6-18.2,19.2-30.2,24.7c-6,2.7-12.3,4.7-18.8,5.7c-3.2,0.6-6.5,0.9-9.8,1l-0.6,0l-0.5,0l-1.1,0l-1.6,0l-0.8,0
|
||||
c0.4,0-0.1,0-0.1,0l-0.3,0c-1.8,0-3.5-0.1-5.3-0.3c-7-0.5-13.9-1.8-20.7-3.7c-6.7-1.9-13.2-4.6-19.4-7.8
|
||||
c-12.3-6.6-23.4-15.6-32-26.5c-4.3-5.4-8.1-11.3-11.2-17.4c-3.1-6.1-5.6-12.6-7.4-19.1c-1.8-6.6-2.9-13.3-3.4-20.1l-0.1-1.3l0-0.3
|
||||
l0-0.3l0-0.6l0-1.1l0-0.3l0-0.4l0-0.8l0-1.6l0-0.3c0,0,0,0.1,0-0.1l0-0.6c0-0.8,0-1.7,0-2.5c0.1-3.3,0.4-6.8,0.8-10.2
|
||||
c0.4-3.4,1-6.9,1.7-10.3c0.7-3.4,1.5-6.8,2.5-10.2c1.9-6.7,4.3-13.2,7.1-19.3c5.7-12.2,13.1-23.1,22-31.8c2.2-2.2,4.5-4.2,6.9-6.2
|
||||
c2.4-1.9,4.9-3.7,7.5-5.4c2.5-1.7,5.2-3.2,7.9-4.6c1.3-0.7,2.7-1.4,4.1-2c0.7-0.3,1.4-0.6,2.1-0.9c0.7-0.3,1.4-0.6,2.1-0.9
|
||||
c2.8-1.2,5.7-2.2,8.7-3.1c0.7-0.2,1.5-0.4,2.2-0.7c0.7-0.2,1.5-0.4,2.2-0.6c1.5-0.4,3-0.8,4.5-1.1c0.7-0.2,1.5-0.3,2.3-0.5
|
||||
c0.8-0.2,1.5-0.3,2.3-0.5c0.8-0.1,1.5-0.3,2.3-0.4l1.1-0.2l1.2-0.2c0.8-0.1,1.5-0.2,2.3-0.3c0.9-0.1,1.7-0.2,2.6-0.3
|
||||
c0.7-0.1,1.9-0.2,2.6-0.3c0.5-0.1,1.1-0.1,1.6-0.2l1.1-0.1l0.5-0.1l0.6,0c0.9-0.1,1.7-0.1,2.6-0.2l1.3-0.1c0,0,0.5,0,0.1,0l0.3,0
|
||||
l0.6,0c0.7,0,1.5-0.1,2.2-0.1c2.9-0.1,5.9-0.1,8.8,0c5.8,0.2,11.5,0.9,17,1.9c11.1,2.1,21.5,5.6,31,10.3
|
||||
c9.5,4.6,17.9,10.3,25.3,16.5c0.5,0.4,0.9,0.8,1.4,1.2c0.4,0.4,0.9,0.8,1.3,1.2c0.9,0.8,1.7,1.6,2.6,2.4c0.9,0.8,1.7,1.6,2.5,2.4
|
||||
c0.8,0.8,1.6,1.6,2.4,2.5c3.1,3.3,6,6.6,8.6,10c5.2,6.7,9.4,13.5,12.7,19.9c0.2,0.4,0.4,0.8,0.6,1.2c0.2,0.4,0.4,0.8,0.6,1.2
|
||||
c0.4,0.8,0.8,1.6,1.1,2.4c0.4,0.8,0.7,1.5,1.1,2.3c0.3,0.8,0.7,1.5,1,2.3c1.2,3,2.4,5.9,3.3,8.6c1.5,4.4,2.6,8.3,3.5,11.7
|
||||
c0.3,1.4,1.6,2.3,3,2.1c1.5-0.1,2.6-1.3,2.6-2.8C342.6,170.4,342.5,166.1,342,161.2z" />
|
||||
</svg></div>
|
||||
<div class="info">
|
||||
<div class="info-title">Grafana</div>
|
||||
<div class="info-value"><a href="http://bigboi.zacke.xyz:3000" target="_blank">LAN DNS
|
||||
</a></div>
|
||||
<div class="info-value"><a href="http://192.168.2.5:3000" target="_blank">LAN IP</a></div>
|
||||
<div class="info-value"><a href="http://bigboi.ocelot-pirate.ts.net:3000" target="_blank">Tailscale DNS</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
1
roles/bigboi/nginx/files/html/photoprism.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 266 266"><defs><linearGradient id="a" x1="45.04" y1="231.72" x2="231.72" y2="45.04" gradientUnits="userSpaceOnUse" gradientTransform="translate(-5.38 -5.38)"><stop offset="0" stop-color="#fff"/><stop offset="0" stop-color="#b8edff"/><stop offset="1" stop-color="#d4b8ff"/></linearGradient></defs><circle cx="133" cy="133" r="132" style="fill:url(#a)"/><path data-name="Logo Pfad" d="m224.19 176.51-4 24.19M41.91 177.5l14.81 14m95.76-137.65L56.62 191.31a.09.09 0 0 0 .07.15l163.41 9.37a.09.09 0 0 0 .09-.13L152.62 53.87a.1.1 0 0 0-.14-.02zm-19.74-13.29L41.8 177.31a.13.13 0 0 0 .11.19l182.18-.8a.12.12 0 0 0 .1-.19L132.95 40.56a.12.12 0 0 0-.21 0zm.11-.16 19.77 13.32" style="fill:none;stroke:#1d1d1b;stroke-miterlimit:10;stroke-width:6px"/></svg>
|
||||
|
After Width: | Height: | Size: 819 B |
|
Before Width: | Height: | Size: 292 KiB After Width: | Height: | Size: 292 KiB |
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
@@ -1,4 +1,3 @@
|
||||
|
||||
- name: Add groups
|
||||
group:
|
||||
name: "{{ item.name }}"
|
||||
@@ -25,7 +24,6 @@
|
||||
authorized_key:
|
||||
user: "{{ item.name }}"
|
||||
key: "{{ item.public_ssh_key }}"
|
||||
loop: "{{ nas_users|flatten(levels=1)|rejectattr('public_ssh_key', 'undefined') }}"
|
||||
loop: "{{ nas_users|community.general.lists_mergeby(nas_service_users, 'name')|flatten(levels=1)|rejectattr('public_ssh_key', 'undefined') }}"
|
||||
loop_control:
|
||||
label: "{{ item.name }}"
|
||||
|
||||
@@ -1,20 +1,19 @@
|
||||
---
|
||||
|
||||
- name: Install packages
|
||||
apt:
|
||||
name: "{{ item }}"
|
||||
name: "{{ item }}"
|
||||
loop: "{{ packages }}"
|
||||
|
||||
# Tank
|
||||
- name: Check that zfs root filesystem exists and is mounted in the right place
|
||||
zfs_facts:
|
||||
zfs_facts:
|
||||
name: "{{ zfs_root_filesystem.name }}"
|
||||
properties: mountpoint
|
||||
register: zpool
|
||||
failed_when: "zpool.ansible_facts.ansible_zfs_datasets[0].mountpoint != zfs_root_filesystem.mount_point"
|
||||
failed_when: "zpool.ansible_facts.ansible_zfs_datasets[0].mountpoint != zfs_root_filesystem.mount_point"
|
||||
|
||||
- name: Set properties on root zfs filesystem
|
||||
zfs:
|
||||
zfs:
|
||||
name: "{{ zfs_root_filesystem.name }}"
|
||||
extra_zfs_properties:
|
||||
compression: on
|
||||
@@ -67,14 +66,14 @@
|
||||
|
||||
# Services
|
||||
- name: Check that zfs services filesystem exists and is mounted in the right place
|
||||
zfs_facts:
|
||||
zfs_facts:
|
||||
name: "{{ zfs_services_pool.name }}"
|
||||
properties: mountpoint
|
||||
register: zpool
|
||||
failed_when: "zpool.ansible_facts.ansible_zfs_datasets[0].mountpoint != zfs_services_pool.mount_point"
|
||||
failed_when: "zpool.ansible_facts.ansible_zfs_datasets[0].mountpoint != zfs_services_pool.mount_point"
|
||||
|
||||
- name: Set properties on services zfs filesystem
|
||||
zfs:
|
||||
zfs:
|
||||
name: "{{ zfs_services_pool.name }}"
|
||||
extra_zfs_properties:
|
||||
compression: on
|
||||
@@ -104,4 +103,21 @@
|
||||
systemd:
|
||||
name: "zfs-scrub-monthly@{{ zfs_services_pool.name }}.timer"
|
||||
enabled: yes
|
||||
state: started
|
||||
state: started
|
||||
|
||||
# permissions
|
||||
- name: Grant `zfs send,receive` to users `syncoid` on tank
|
||||
community.general.zfs_delegate_admin:
|
||||
name: tank
|
||||
descendents: true
|
||||
local: true
|
||||
users: syncoid
|
||||
permissions: send,hold,bookmark
|
||||
|
||||
- name: Grant `zfs send,receive` to users `syncoid` on services
|
||||
community.general.zfs_delegate_admin:
|
||||
name: services
|
||||
descendents: true
|
||||
local: true
|
||||
users: syncoid
|
||||
permissions: send,hold,bookmark
|
||||
@@ -1,61 +0,0 @@
|
||||
version: "3.1"
|
||||
services:
|
||||
unifi-controller:
|
||||
image: lscr.io/linuxserver/unifi-controller:7.2.92
|
||||
environment:
|
||||
- PUID=1400
|
||||
- MEM_LIMIT=1024
|
||||
- MEM_STARTUP=1024
|
||||
volumes:
|
||||
- "{{docker.volumes_path}}/unifi_controller:/config"
|
||||
ports:
|
||||
- 8443:8443
|
||||
- 3478:3478/udp
|
||||
- 10001:10001/udp
|
||||
- 8080:8080
|
||||
- 1900:1900/udp
|
||||
- 8843:8843
|
||||
- 8880:8880
|
||||
- 6789:6789
|
||||
- 5514:5514/udp
|
||||
restart: always
|
||||
plex:
|
||||
image: lscr.io/linuxserver/plex:latest
|
||||
container_name: plex
|
||||
environment:
|
||||
- PUID=1400 # docker
|
||||
- PGID=1202 # warez
|
||||
- TZ=Etc/UTC
|
||||
- VERSION=docker
|
||||
volumes:
|
||||
- "{{docker.plex.config_volume}}/plex:/config"
|
||||
- "{{docker.plex.tv_volume}}:/tv"
|
||||
- "{{docker.plex.movies_volume}}:/movies"
|
||||
restart: unless-stopped
|
||||
# This makes the instance claiming a lot easier since you can access the host on the same subnet.
|
||||
network_mode: host
|
||||
frigate:
|
||||
container_name: frigate
|
||||
privileged: true # this may not be necessary for all setups
|
||||
restart: unless-stopped
|
||||
image: ghcr.io/blakeblackshear/frigate:stable
|
||||
shm_size: "150mb" # update for your cameras based on calculation in docs
|
||||
devices:
|
||||
#- /dev/bus/usb:/dev/bus/usb # passes the USB Coral, needs to be modified for other versions
|
||||
# /dev/apex_0:/dev/apex_0 # passes a PCIe Coral, follow driver instructions here https://coral.ai/docs/m2/get-started/#2a-on-linux
|
||||
- /dev/dri/renderD128 # for intel hwaccel, needs to be updated for your hardware
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- "{{docker.frigate.config_volume}}/config.yml:/config/config.yml"
|
||||
- "{{docker.frigate.media_volume}}:/media/frigate"
|
||||
- type: tmpfs # Optional: 2GB of memory, reduces SSD/SD Card wear
|
||||
target: /tmp/cache
|
||||
tmpfs:
|
||||
size: 2000000000
|
||||
ports:
|
||||
- "5000:5000"
|
||||
- "8554:8554" # RTSP feeds
|
||||
- "8555:8555/tcp" # WebRTC over tcp
|
||||
- "8555:8555/udp" # WebRTC over udp
|
||||
environment:
|
||||
FRIGATE_RTSP_PASSWORD: "{{docker.frigate.rtsp_password}}"
|
||||
@@ -1,74 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Bigboi</title>
|
||||
<link rel="stylesheet" href="index.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Welcome to Bigboi!</h1>
|
||||
<p>This is the landing page for all web services hosted on this network.</p>
|
||||
|
||||
<p>Press any of the links below to go to the service</p>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="icon"><img src="opnsense.png" /></div>
|
||||
<div class="info">
|
||||
<div class="info-title">OPNSense</div>
|
||||
<div class="info-value"><a href="https://opnsense.zacke.xyz" target="_blank">LAN DNS
|
||||
</a></div>
|
||||
<div class="info-value"><a href="https://192.168.2.1" target="_blank">LAN IP</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="icon"><img src="homeassistant.png" /></div>
|
||||
<div class="info">
|
||||
<div class="info-title">Homeassistant</div>
|
||||
<div class="info-value"><a href="http://homeassistant.zacke.xyz:8123" target="_blank">LAN DNS
|
||||
</a></div>
|
||||
<div class="info-value"><a href="https://opnsense.zacke.xyz" target="_blank">LAN IP</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="icon"><svg viewBox="0 0 512 512" class="fill-current">
|
||||
<path
|
||||
d="M130 446.5C131.6 459.3 145 468 137 470C129 472 94 406.5 86 378.5C78 350.5 73.5 319 75.5 301C77.4999 283 181 255 181 247.5C181 240 147.5 247 146 241C144.5 235 171.3 238.6 178.5 229C189.75 214 204 216.5 213 208.5C222 200.5 233 170 235 157C237 144 215 129 209 119C203 109 222 102 268 83C314 64 460 22 462 27C464 32 414 53 379 66C344 79 287 104 287 111C287 118 290 123.5 288 139.5C286 155.5 285.76 162.971 282 173.5C279.5 180.5 277 197 282 212C286 224 299 233 305 235C310 235.333 323.8 235.8 339 235C358 234 385 236 385 241C385 246 344 243 344 250C344 257 386 249 385 256C384 263 350 260 332 260C317.6 260 296.333 259.333 287 256L285 263C281.667 263 274.7 265 267.5 265C258.5 265 258 268 241.5 268C225 268 230 267 215 266C200 265 144 308 134 322C124 336 130 370 130 385.5C130 399.428 128 430.5 130 446.5Z">
|
||||
</path>
|
||||
</svg></div>
|
||||
<div class="info">
|
||||
<div class="info-title">Frigate NVR</div>
|
||||
<div class="info-value"><a href="http://bigboi.zacke.xyz:5000" target="_blank">LAN DNS
|
||||
</a></div>
|
||||
<div class="info-value"><a href="http://192.168.2.5:5000" target="_blank">LAN IP</a></div>
|
||||
<div class="info-value"><a href="http://bigboi.ocelot-pirate.ts.net:5000" target="_blank">Tailscale DNS</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="icon"><img src="unifi.png" /></div>
|
||||
<div class="info">
|
||||
<div class="info-title">Unifi</div>
|
||||
<div class="info-value"><a href="http://bigboi.zacke.xyz:8080" target="_blank">LAN DNS
|
||||
</a></div>
|
||||
<div class="info-value"><a href="http://192.168.2.5:8080" target="_blank">LAN IP</a></div>
|
||||
<div class="info-value"><a href="http://bigboi.ocelot-pirate.ts.net:8080" target="_blank">Tailscale DNS</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="icon"><img src="plex.png" /></div>
|
||||
<div class="info">
|
||||
<div class="info-title">Plex</div>
|
||||
<div class="info-value"><a href="http://bigboi.zacke.xyz:32400" target="_blank">LAN DNS
|
||||
</a></div>
|
||||
<div class="info-value"><a href="http://192.168.2.5:32400" target="_blank">LAN IP</a></div>
|
||||
<div class="info-value"><a href="http://bigboi.ocelot-pirate.ts.net:32400" target="_blank">Tailscale DNS</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
9
roles/shared/avahi/tasks/main.yaml
Normal file
@@ -0,0 +1,9 @@
|
||||
- name: install requirements
|
||||
apt:
|
||||
name: avahi-daemon
|
||||
|
||||
- name: enable avahi daemon
|
||||
systemd:
|
||||
name: avahi-daemon
|
||||
enabled: yes
|
||||
state: started
|
||||
@@ -1,5 +1,4 @@
|
||||
---
|
||||
|
||||
- name: Create ansible user
|
||||
user:
|
||||
name: "{{ bootstrap.user.name }}"
|
||||
@@ -9,7 +8,6 @@
|
||||
create_home: yes
|
||||
state: present
|
||||
|
||||
|
||||
- name: Add public ssh key
|
||||
authorized_key:
|
||||
user: "{{ bootstrap.user.name }}"
|
||||
@@ -23,10 +21,11 @@
|
||||
group: root
|
||||
mode: 0440
|
||||
|
||||
# TODO: remove?
|
||||
- name: Enable myself to run sudo without password
|
||||
copy:
|
||||
src: wholteza.sudoers
|
||||
dest: /etc/sudoers.d/wholteza
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0440
|
||||
mode: 0440
|
||||
@@ -6,3 +6,4 @@
|
||||
# where [:port] is an optional port number that defaults to 25.
|
||||
root:{{ ssmtp.send_as }}:{{ ssmtp.mailhub }}
|
||||
wholteza:{{ ssmtp.send_as }}:{{ ssmtp.mailhub }}
|
||||
syncoid:{{ ssmtp.send_as }}:{{ ssmtp.mailhub }}
|
||||
7
roles/shared/various-cli-tools/tasks/main.yaml
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
- name: "install various cli tools"
|
||||
apt:
|
||||
name:
|
||||
- bashtop
|
||||
- htop
|
||||
state: present
|
||||
5
roles/shared/zfs-install/tasks/main.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
- name: Install zfs
|
||||
apt:
|
||||
name: zfsutils-linux
|
||||
state: present
|
||||
@@ -1,9 +1,8 @@
|
||||
---
|
||||
|
||||
- name: Install packages
|
||||
apt:
|
||||
name: "{{ item.name }}"
|
||||
loop: "{{ packages }}"
|
||||
name: zfs-zed
|
||||
state: present
|
||||
|
||||
- name: Enable zpool monitoring
|
||||
template:
|
||||
9
roles/smolboi/network/tasks/main.yaml
Normal file
@@ -0,0 +1,9 @@
|
||||
- name: install requirements
|
||||
apt:
|
||||
name: avahi-daemon
|
||||
|
||||
- name: enable avahi daemon
|
||||
systemd:
|
||||
name: avahi-daemon
|
||||
enabled: yes
|
||||
state: started
|
||||
52
roles/smolboi/sanoid/tasks/main.yaml
Normal file
@@ -0,0 +1,52 @@
|
||||
---
|
||||
- name: Install packages
|
||||
apt:
|
||||
name: sanoid
|
||||
state: present
|
||||
|
||||
- name: Create sanoid directory
|
||||
file:
|
||||
path: /etc/sanoid
|
||||
state: directory
|
||||
|
||||
- name: Copy sanoid config
|
||||
template:
|
||||
src: sanoid.conf
|
||||
dest: /etc/sanoid/sanoid.conf
|
||||
|
||||
- name: Copy syncoid private ssh key
|
||||
template:
|
||||
src: syncoid_id_rsa.jinja2
|
||||
dest: /root/.ssh/syncoid_id_rsa
|
||||
mode: 0600
|
||||
|
||||
- name: Copy ssh config file
|
||||
template:
|
||||
src: config.jinja2
|
||||
dest: /root/.ssh/config
|
||||
|
||||
- name: Build syncoid cron job command
|
||||
set_fact:
|
||||
syncoid_commands: "{{ syncoid_commands|default([]) + [ '/usr/sbin/syncoid --no-privilege-elevation --recursive --no-sync-snap --create-bookmark syncoid@bigboi.zacke.xyz:' ~ item.remote_path ~ ' ' ~ item.local_path ] }}"
|
||||
loop: "{{ zfs.to_pull }}"
|
||||
|
||||
- name: Ensure syncoid sync bash file
|
||||
copy:
|
||||
dest: "/usr/sbin/syncoid-bigboi"
|
||||
content: "{{ syncoid_commands|join(' && ') }}"
|
||||
mode: 0700
|
||||
|
||||
- name: Ensure syncoid cron job
|
||||
ansible.builtin.cron:
|
||||
name: "Syncoid pull snapshots"
|
||||
minute: "0"
|
||||
hour: "0"
|
||||
job: "/usr/sbin/syncoid-bigboi"
|
||||
|
||||
# - name: Ensure syncoid cron job
|
||||
# ansible.builtin.cron:
|
||||
# name: Syncoid pull snapshots {{ item.remote_path }}
|
||||
# minute: "0"
|
||||
# hour: "0"
|
||||
# job: "/usr/sbin/syncoid --quiet --no-privilege-elevation --recursive --no-sync-snap --create-bookmark syncoid@bigboi.zacke.xyz:{{ item.remote_path }} {{ item.local_path }}"
|
||||
# loop: "{{ zfs.to_pull }}"
|
||||
3
roles/smolboi/sanoid/templates/config.jinja2
Normal file
@@ -0,0 +1,3 @@
|
||||
Host bigboi.zacke.xyz
|
||||
User syncoid
|
||||
IdentityFile ~/.ssh/syncoid_id_rsa
|
||||
17
roles/smolboi/sanoid/templates/sanoid.conf
Normal file
@@ -0,0 +1,17 @@
|
||||
[backup]
|
||||
use_template = production
|
||||
recursive = yes
|
||||
|
||||
#############################
|
||||
# templates below this line #
|
||||
#############################
|
||||
|
||||
[template_production]
|
||||
frequently = 0
|
||||
hourly = 36
|
||||
daily = 21
|
||||
monthly = 2
|
||||
yearly = 0
|
||||
autoprune = yes
|
||||
autosnap = no
|
||||
|
||||
1
roles/smolboi/sanoid/templates/syncoid_id_rsa.jinja2
Normal file
@@ -0,0 +1 @@
|
||||
{{ syncoid_private_ssh_key }}
|
||||
30
roles/smolboi/zfs/tasks/main.yaml
Normal file
@@ -0,0 +1,30 @@
|
||||
---
|
||||
- name: Check that zfs root filesystem exists and is mounted in the right place
|
||||
zfs_facts:
|
||||
name: "backup"
|
||||
properties: mountpoint
|
||||
register: zpool
|
||||
failed_when: "zpool.ansible_facts.ansible_zfs_datasets[0].mountpoint != zfs.root.mountpoint"
|
||||
|
||||
- name: Set properties on root zfs filesystem
|
||||
zfs:
|
||||
name: "backup"
|
||||
extra_zfs_properties:
|
||||
compression: lz4
|
||||
dedup: off
|
||||
state: present
|
||||
|
||||
- name: Enable weekly zpool scrub
|
||||
systemd:
|
||||
name: "zfs-scrub-weekly@backup.timer"
|
||||
enabled: yes
|
||||
state: started
|
||||
|
||||
- name: Create backup datasets
|
||||
zfs:
|
||||
name: "{{ item.path }}"
|
||||
extra_zfs_properties:
|
||||
compression: lz4
|
||||
dedup: off
|
||||
state: present
|
||||
loop: "{{ zfs.to_create }}"
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
|
||||
packages:
|
||||
- name: zfs-zed
|
||||
|
||||
@@ -5,7 +5,7 @@ then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! grep -qE "vault_decrypted: true" "./vars/vault.yaml";
|
||||
if ! grep -qE "vault_decrypted: true" "./vars/bigboi.yaml";
|
||||
then
|
||||
echo "Decrypt vaults using './decrypt-vault.sh' first!"
|
||||
exit 1
|
||||
@@ -13,6 +13,6 @@ fi
|
||||
|
||||
./helpers/get-passwords.sh
|
||||
|
||||
ansible-playbook --become-method sudo main.yaml
|
||||
ansible-playbook main.yaml --become-method sudo --extra-vars "ansible_become_pass=$(cat .passwords/bootstrap_become)"
|
||||
|
||||
./helpers/delete-passwords.sh
|
||||
329
vars/bigboi.yaml
Normal file
@@ -0,0 +1,329 @@
|
||||
$ANSIBLE_VAULT;1.1;AES256
|
||||
33643861653232343364306362306136363837353332653538616463666332356262323238326635
|
||||
3237353835333535623064643366306334383634613733630a636431396665303666383734323631
|
||||
31656264646136633332613338353539393030636133326633636665363435366662323735626466
|
||||
3230653963643830630a376637363635646337353735653264616364663562313331626337656137
|
||||
62316634303735613730326331306261373761616666313032306464353537316333616165336639
|
||||
63663131633865366364626465393336323366356535306165366561616166653461323731393939
|
||||
64666566643837626365613837333436366161666231626530616637326137633964333939646633
|
||||
31306234356638323663653937656531373861313539396235383336323431393336313031313362
|
||||
30633264366363653662383234323661653935623738396665656666613033613364626166636161
|
||||
38356339343763633464626335373034633562396266386134306365643236336462633534623733
|
||||
62343837356565666365653131306463643430343738383537376562376234643130343833363639
|
||||
66643335653465383435633634356138366364643838666232353534306561373630373837636463
|
||||
39663733663430623962616331633361306136386166396139633762643037646634636531633535
|
||||
65623462616666373265633832663038383962383434326562363331376661653834376330353834
|
||||
39363737316433396437656363376335616236393032376536316637626162643935333932623862
|
||||
64663434616537666161633633313736663064373166343937613630316438376537323637393933
|
||||
65306264346665613162653532626663343962376432363966633965323861386631363033613730
|
||||
62383161343535356333313835613439383562303236333536383864666561346337313932623437
|
||||
65393263303131366336343231373333326134393163323131313432306266316536316235363432
|
||||
39353163633838616633663462326366393435306562303133333263333262323163353631653834
|
||||
33343532656666626234356536343239623032396566353432366661313765393633346535373235
|
||||
39373633613337356436326663623936636635343134386638363364376663666131383039303138
|
||||
34303764333137613936313338633861323466623834386362393536393861646437366262626666
|
||||
63643464303366393866316439333666326463613334633038303762316334316535363362363739
|
||||
33323434393932313366303533656530616232343465313235623631373865333461343637613930
|
||||
32316434326134336537653065613033326435633534353934376335666338356634353866303032
|
||||
62373439323535306362626664613566326131666434343938636464623365663030666432396466
|
||||
64653236323033633931643436613433376639356137376130613331653461336230396239333236
|
||||
65353562306239343466303433373435393830653730653339656235626362393066363031386663
|
||||
37333939666231393835373864336133363161316365333661396665346436626664383265653130
|
||||
62333331613034633133653265353332366535643664363839326636396331623132353234373266
|
||||
64356431623665323031663731363137356633366330646336353632353164343765366638336362
|
||||
33633539303337623263313065633631313564336233303531643633333531323366643461306234
|
||||
66646364643639323134636131613436343461396166363664333035643062316237613237633135
|
||||
62323531373266616134666138306466343966613737366435643736393264393533313137396339
|
||||
33383565343036633166396338393531376236633762646535303932386638333138353330303632
|
||||
32306331626161366236316662653164313266623238313765303364353834346136643939346237
|
||||
36653634653033353434373864663736356439333836666366613037353037333731376164336235
|
||||
32616235383761323361313361613436343733643834376234366631653234663236373835643130
|
||||
32663133323064316338643538306539613132336563323932643035303561373531336263313261
|
||||
33333634636461666436646438663062363665313066663464366462383834346433396331353238
|
||||
39383364393334313837633535336634383766363532623939613665323766393239633464616165
|
||||
33636432643837616631343432376539363332633530353038373037366132323334663464626332
|
||||
63363638333161343065663662623832636439323565326537643432633066353830316131316237
|
||||
37336639346431313631323732353832313930353536363232306461313964383762353862373138
|
||||
32643937326336313530343965376361363666333639343932373031373132303861376464376531
|
||||
32626663323837306165303236663438326466343737303234663437343036346635643839336132
|
||||
38396238323538313435613239333539316466653662336334343166346661323761343161346466
|
||||
62333835343135326563383031363135613364656132343865313738643437653865366262646332
|
||||
63346437303030663836333535666634363439363166376662383836373762616133343338306666
|
||||
33343531313933346133613133383262653235636139303463376661383832326330306337633538
|
||||
36623435656139303663323162623263313866386562303363306663306431646439613938326233
|
||||
38363638616332353132333862613863333735323338326634343664643434333162373439646337
|
||||
61333362636663306565373132343839323739393363326331353732373064386361303830363230
|
||||
63363639373230386238333630376564643234653337346438356634306666303930623636363133
|
||||
34643231316662316238346531343630373666363231613161326461326665326234653261393636
|
||||
61636563326631343365366231636632626538373161363961306537326265383163646436613638
|
||||
33316539336531646664336430363438313631316261316238623763343632353063633865376434
|
||||
35313662343431363063646430386433333730633039303836386434323166646461363464393331
|
||||
34653037393266363161663730373532636134646338363435623731303239326537336131626531
|
||||
30323437656639383264663463303733323034643338336162363535636464663338663333393763
|
||||
34393238303061643663336232366539613335323637646637616631373634303537636362663430
|
||||
34383964306266646263366531376533343336666235383836343335393637306432306130666436
|
||||
65366264653463376438653131373832666365633236623530636166656235666631613563616663
|
||||
38613031386661643861323730646132383238393665383232623263326534376230393461656661
|
||||
64356231623563373938333538613632306334616661386263386561303162363965633932373965
|
||||
32333661383437316334336236656263633934636239306664633733633739613438653838353665
|
||||
64643164316363316131333264353961646238326330373036333465626538626332336636336439
|
||||
35623138333066383839636131666663383133313831323139626239613535643437663339633366
|
||||
34313831636630393634653430626239306230323765656337333239346137393639356165336161
|
||||
64323134363235313930323033346263306236646261363066623439653930643132303464306237
|
||||
65663934306539336437343330323235316666356537343665303164323261373461353936336464
|
||||
39373263613066306361353031346332386161656330383734343762383436393835613836656466
|
||||
39313233323032303265356639373231323331373832393832653964633666663934333662363433
|
||||
31383338326336346666303237646639663462383233343134396536326366633035373164363732
|
||||
31633566633263636239343862363638383133656335373733323630383232623437326531326265
|
||||
66383631343535316631306566383939663433343830393031383430373465623636643933626239
|
||||
35616566343635333065336163383436666232613139343633633438303233393133643834366664
|
||||
66396638366537633531333334396332643663663864356139623862636435363864613934333164
|
||||
64613161383832613933353266353337626465353665653436333262396461636236653461323530
|
||||
34656537306366316438636361393362356634663838626435316231366666346635323731323032
|
||||
65653065653530623135663234393639353035656565356564313763316433626635393862383062
|
||||
34386533373635646635333862343333396261323733353266643534343064656432353634663637
|
||||
65653964386339326264633934386566656239396230653931346535333833333338646262373861
|
||||
65646338316430363463333337346239333138306434653131653366613465623133663662353463
|
||||
37346330626337623739336262666531353735343765336264663137613863633939366632393933
|
||||
33303532353938303138306135323432626531623431613134656234313334376162646339373364
|
||||
63303766373133353533613637393232323638323963643866376535366331373133333261616663
|
||||
65643865326433333162626537396363613036333761373666303161373534383236313939313265
|
||||
30623234363935323362363363653430653039626633366362323336383965336166623239653265
|
||||
39396339393737323331343734316165373133333130353065646563396564316665323138656362
|
||||
65396132346265636463633863626561373732663532656265313030646132663535323563356362
|
||||
61313463336132326463313030386339353966346436643265653236303137336136393731613263
|
||||
38373038363666633039666365653739613163303439323938336463646337653062373765613933
|
||||
39663833373461633334623133613730333735636462366339306537316162346536623063376239
|
||||
30366337376562643836316563333564623161633633323833386636313334373864613839356465
|
||||
37343066323336623431383032663536383831633537613636393135656364316339376361643534
|
||||
62643164653263326464623862346538353262373432643332656432623066663264343438636166
|
||||
37353935653361643264346331356334346539626133386530303761333730346437623562353861
|
||||
61343639346637336462346531353336343133343263613234313239303761653838643736336164
|
||||
35323062333434386361663063313034336566323136616333343930306362373137663137313265
|
||||
31326264626136353139323532386662393838326135396662623238333562336363666439313333
|
||||
31336230336266313339366231663631643433363465373364366565313135666365326164633431
|
||||
63323435626462616532336462643463323731373635623838326236363762656266356237366362
|
||||
38353137663837656537643937376662363165643164643461393666666165346638373930636461
|
||||
34353331313135643436633532643438653864623531316361626233356137346434323362393234
|
||||
35646339393166306432313338633939333530363561326163623937363930643834623137373330
|
||||
37326334396361376664666131623936626437633032363763653335346132326230373066626237
|
||||
38633361656362356166386435363033616463616265643537636530373936333363653032333162
|
||||
31666531643237373934396363646163326535303165326330303832343961323032636531396630
|
||||
65653735343466663637636335316661313437633263346333333264623538393263373132346663
|
||||
39363434353339383666346362656535353962613031383662343563316364396535326433383230
|
||||
62646231376435653333643138316333633033616465343535623165646436363032656336383734
|
||||
66303664353933316133383264623664396564376661623433303036643964323766326133643665
|
||||
32666566333461623130366137393739303932616130303965326163626466653362333634353131
|
||||
36323435396437636362383331643165306239663839666365656239653565616137613332386232
|
||||
36363231363839646339653437383766336262393739346364646538646136623435663732383864
|
||||
38376461633135363635386535643562363833356661333033353361396533363134363466323732
|
||||
39323961653166376130353366353031363730386565333236333061626565613562333638363062
|
||||
61313364633637643763353439366365316431643833396637343832363763333830376464333839
|
||||
64303764323937613132316637376133613937333066623966346466373261646331366130363162
|
||||
33643664616638366533313663383836333264383062626139333730383565656466353639626537
|
||||
61336462643930643964376131383836643165303735303135376131616439616530323633646332
|
||||
61306430393633643837313930346366623738336238393630393163303366616566363837663137
|
||||
64383035316631613462663265336537393732636331663264383332366461306633393466303038
|
||||
33623164636235383565653461383465343631346665633733636666656138666531353934303836
|
||||
62393337356531323335636135366564613533336230316162373264336433663736316462323264
|
||||
31346138313265333166353634653861316533623137356436666264326630613063366433366564
|
||||
61366331373463633133333831353764623632356637313132366261303533376665346363646364
|
||||
35666266356661323234353737363634303531633066396161303036393238336630316531383565
|
||||
30303961633961613934636165366234323836376465333039326361323563626337343637333138
|
||||
63653431333266656138366365613239366537366632616566626436336238666663653235643062
|
||||
32303463636539653963303461393530653938633366383166343633396238373663656563633966
|
||||
65333662623338666362656130323933373735383838333538343239313561366533333665316339
|
||||
30323734643437633335326436353565373466633962643134386337336664366532346362326264
|
||||
39643633323433653930363336356133623632333837656630303462356635343639653237333561
|
||||
32323634393834653266663862303936343566313663376233656562626435653961393861396463
|
||||
35613766616531386639343137323636623465356363326661343362366638326263623262636135
|
||||
35353564323764383663313432316235613135393037303330376463333334396231613962656630
|
||||
65353332323361336636636566656332393730636462656539616536386135393566333631336634
|
||||
38653034343437323466653066646665313738386665393833383232373830616439666562306361
|
||||
61656534343432356666633434353834316637393132396161333065656634366563663265373030
|
||||
36386165633266646438376435303938623834656231626165323662376330393839363035356662
|
||||
35333263643534303634313836363464623234643861356536336130376635663737333735333631
|
||||
66303138613761626561303331646531353762626563653066323733663736353138653139323530
|
||||
64633933636430343735343332346232326462623232316430636565366162333031666332343961
|
||||
65343339333161306463323439343733346438616135653238356565343263656133653533636163
|
||||
35316334313833313566313634303233626532633237666231326464326334306535323835656137
|
||||
38643633643937336538323837396138313663633131376165353934313466343133316435386434
|
||||
33393638356337643330336162323362303637373930353330613037653966626262323362636436
|
||||
65356464323136616638346630363964326535616636613436336635356663383531333935386263
|
||||
34623961323062346463383831613731363535626536313837303433633637613965303134386166
|
||||
39623834366331643837646535633961373936333431346438346434373433636433373839643438
|
||||
65666136396561313061623362383661323963306332313538363466636434376663383136323733
|
||||
31396638623332636465323965666563623333343532616337623739653564616235303431643935
|
||||
32616539623137323037333430333635626264613638393961353764396239626662653337663831
|
||||
66386434613765363636363835656638303735353164653466386630656433646230366136653131
|
||||
65346339313033336261366636336265323331353836333261633336386430353262663830613534
|
||||
65333235343536313937383362356138343337336530363337323062326665383464333931333439
|
||||
37653133373436313564376330363535363532323235366238646330633565393766663565643839
|
||||
39383063306238313637343836396662363466313362663162633230373735613433643861323931
|
||||
66666536616135633134643561616331396232616466346537343936363035646663326266326132
|
||||
33643338356532343435353037393664363938343431363838393035663037633966653732323134
|
||||
66396633623764373263643033373638366634356666323335646134353436326531316434343862
|
||||
36386637613338653832323064613062363437383530636465633530366561616363306533366561
|
||||
36353338346530356465306361363865313136616364393232383363653563373031313532346236
|
||||
65376133323337316138373531343631333532323730343830396530613961613238646532303239
|
||||
32616332346264316636613938613934323838303461616530326165396336316165313632363266
|
||||
32353361616631373163623366386133663134616338353339346339313838613437306631303861
|
||||
36373734653338393535333561366164653163666239643837623439643839383937363130346664
|
||||
38653738613139343965323437303266303532386336363263653665653937326264363537323539
|
||||
36383135663430363532613963366162663335623064663432343034633833336538316337366330
|
||||
36313937353535306437326666396638643366343037316364336234663363646238353766626232
|
||||
30653532363039303066333437653132356233393061313131366339633863633033623431383934
|
||||
65393063316235303237376162383863646637396236336665646533336534663464316231376439
|
||||
64346561613666393362376633643934333836313264383465623832626431333865376233346163
|
||||
34663861643162303635303865653533373761383430393561373137626666346539396136633066
|
||||
63353232313636313739316134653965363431343930336661353066663761333739323865383437
|
||||
32613565363633646330663231633963666131383837366433376261393137353437333563616564
|
||||
61313065353639613832363038653034623033326137313963323662323565666637396263306534
|
||||
32363932336366386238616333353535303137313739663336323034356261663935616431656462
|
||||
39336165616238383236333933353939326235333532366337393666376437333765623562313535
|
||||
63353865336234666265626539363565316134306338633936363035333832623862393761653438
|
||||
63306530323933386462623161346562653863333938333438333362346534303134303136663039
|
||||
37376637366165353834303063323562623463623535656238323336353332383366386139333162
|
||||
62623361343232343936303932646665663539343565303835656235383435666336383065343637
|
||||
62316665663664386338316530383234653333613937366234646635393130346637333663333136
|
||||
30626231613933643539633533303361303964643462343830306333323831363061633338303839
|
||||
61636161303861336363666439393638363039333062633036363337616532383662623639373239
|
||||
30636664626335303764313364356339353539373836373736653337373336303438323533313933
|
||||
37326639666566303630346438356238613334376632353933343236643838653332393938656166
|
||||
61366362376633323333386433343239656530363839663565643437633264646464376431383865
|
||||
38393164653732616334363233323431303637353435313833663662316539303434653436323466
|
||||
31666537663530323230366466646665666232373066666231623466353031393530393734336234
|
||||
38646236343263646461346133396361633363313536383833653738656438353436313561666436
|
||||
31396134363336653431376562616631393936646262383765393936326333306433323362336332
|
||||
62386430663833613335373636323035363730663033663464623935363735343235336361386133
|
||||
33626561663936643330343735316630636264373433666136663562373665653639353763643032
|
||||
63366237353463336233336335376363653038343935333064386132303931613261623166623965
|
||||
33616533383261363430633431303436663666333438653032326138643866623565353461356436
|
||||
36626566643633343465323736663331373262356463386261383066613831636364633232623861
|
||||
37353265656130336130616335636462393234386139353763633636376532663939313135383562
|
||||
65333365373836303661633831646431323562663231613631633263313166343339343463333864
|
||||
36393631313832653931343766363765663236393663653262333237393438383361383732333639
|
||||
65353630343634643038633033343333666363653430323166636334396165316465386363666238
|
||||
32353936626662363131643836323266313966626361623434623561643564373939393734663165
|
||||
63336638656263623962613866636532396439373833313130643738343664383236623033633938
|
||||
63623861336534616231303734316231646333653563396362663663643038633333393231613634
|
||||
35643034383964623734303638363164323261366135333039623764303034393064366431626262
|
||||
34626665306364346163626163313763303834666466376631366564363937316630366535646631
|
||||
36303838613638626131646261366361356661333633626333366532373630633331636531373265
|
||||
30353538313263643162626536643836313232633262636463373665626638663137653239663833
|
||||
33346537636366396661643565393630643362623065656632383566646533616563343461663537
|
||||
33633031616137373438653537393363386232633163613433666663616262346666386265666631
|
||||
36613038636166663965663663373030353836333033643932303162363137313939386665303464
|
||||
63393031386434343463373030373832386337336166336233333337343865616363393066373239
|
||||
66363364333863343762303732373466356630303665646632636435313262343162633638646538
|
||||
64306336343735663231626539366563613531333265303065386462613136313361333262613336
|
||||
63666462616363626436313038356639356330313831313366646265626530613031666139336631
|
||||
38633033316636643431623531616433323634623862303330313661653263313663393566386435
|
||||
39613336356233616536653963303462386464656136623839623134393531366630643463633763
|
||||
62343862333336366134663166343964646437636431666631333038656264333432373737303263
|
||||
35666463353266373430346533633534343663363964663066366335313431643639613034326536
|
||||
35333761396338363961653066353863336463666261343337353930373766303235633765346165
|
||||
61336666626637336166616439616366316237303939663535633762343433626163353136653930
|
||||
30336363386163393364666535303037383437613737653636393037393031383265383733636432
|
||||
63343837353031316236366232663837383730363364623565636435326662396661393739653031
|
||||
34343833393338373237616361653331663864393632353964656563623366313239623865386434
|
||||
65663634646662383263303334623835376633666537366532356266623735393737346533636662
|
||||
30643631383334616630306264643035653733333431623736653034393936393264613537666564
|
||||
38343838396630613163316366386564333561313237623936373230656534326630616335326566
|
||||
38653433616666653933653261633665383332313837643437396266356166333563333130373131
|
||||
33666537663030343163613433323637613861343339353963623137633731336133626164653639
|
||||
31383233356666633362393762366461376634646536613038303162323934343066623866316535
|
||||
66616332326632613137613361643964656266636338366433346538643065633966643463343036
|
||||
33366264306465666339663362623335396363313837393631386136626238393431346438323734
|
||||
32356437386438643161666361313164623738646239653530383161613133303630346166343938
|
||||
31636538306331306336623130663339366563363263326632346433366266643638646430313566
|
||||
30313763633666646136653236373461383137373164363361653237643561306265633162343131
|
||||
34383030343865643939383831626332343666623039396562663366313665616232636461613665
|
||||
66303563386261633161373133333763333062633237633563393364363361386136353862663761
|
||||
34633737613936316532303630316163326662616631363133653064626533656439643664316130
|
||||
35396132373335363537396565306634663562613865393830663361333766373161663336316561
|
||||
37303439356338633835326566306132633330643731336132306635633633633665343430663562
|
||||
65643935336366653236363333393839356266613266363561643361323761333632646631303235
|
||||
65666332656238633831656439313865626237363539656339393462303865666537643365346630
|
||||
32626631613231313762393937386638373434626137653730636161346563356261353833613838
|
||||
64373134353463626536333661336432626334656361366631663739626361303262386537613234
|
||||
30373435363233333435306432643331386461326634613565623336383833323230653761633535
|
||||
31376466393064623734363030343137643637643962313565326663376138303339353332383661
|
||||
35386536326635343266303836313566636361386339646231656662643738376666363161346662
|
||||
37623964386437356539373839636432313765343130316133303163356137316131646432643736
|
||||
37313065396432623733353563643637623564363236313761356365643161373033326238666333
|
||||
35356632323739373465366537623532303261313766373834623136336665646331356661326235
|
||||
61316663636633306531326463653731616666663931666430636630636463613230373464363637
|
||||
30663061663762323666306636613938626535656431653262666236646236386439383832333765
|
||||
33663564636432656134646138336566366437616231343434386236656231343261356332353938
|
||||
65383330643063646262356633383066326139396435393961636431306266356334666437356431
|
||||
34396336393864303161303938306634326162353665613138366632623735373965353139336139
|
||||
33656136353835326165323061383138323534323237346164363731623566303133313031386536
|
||||
37623161333164313331366539623236313361376163343733343337363232663630656130326561
|
||||
35386330643764343166323632303661643132306362643833333462386136613830643963323065
|
||||
36306661336563633637306261656137323137636331336666343237393931633736353665623532
|
||||
38353239333533653733616536366238323864646664343463636537326132616261393566383638
|
||||
39656530653936336264346637643234636564353534613332306130653730353836383936653763
|
||||
37313136643961613938633034353637303938313631313839366564303366316530316230643530
|
||||
37663366643436636334343862643632336164313836303063333863343230613463646337653637
|
||||
30303939656533396534656433313039643536343063313463626234373331343264316531333530
|
||||
37356463316636653366656636633934343237306137363863303136366432323162623238373539
|
||||
31663362656634613461616236303634626135306330626637323962306438353137333436393163
|
||||
38333762306231623633306131643935376164616435303835336635636261663230333031373235
|
||||
61663964613232653631663766366336623138386238303962323761386566366463353036626664
|
||||
36386462343739363536373166333866653261336438356266303261366534333736663462323437
|
||||
33663266313431653735323737623332326465313830393364613734666363366637333330633836
|
||||
33643631323239313861646537356639656462366465373866363635616165636437633634366430
|
||||
31653365336566336165616330636662386164383634366662313833646634336437663332386566
|
||||
33393963383063643365313038396133353434653935643939373638633630313531333336363864
|
||||
36383533636161326666663232663166386539393166393039343137316537353835633434656532
|
||||
61386234656336666434623833303831613034316438336536393237363036313836323638353439
|
||||
62323333656362356661366236386434663137366132323635333361613836313264646664326364
|
||||
66326439326562306137343665626533366435323838613632623962386536643936383735626537
|
||||
65663638626630396430343062313331373830316633643563306138353964356361313535343932
|
||||
63306463373632386632643330356164623763336431303439663862636661656261313937313864
|
||||
30383861303664613837383564343466333838323563386533653634336434313362383963663962
|
||||
31613363626562303432656536356533346363613035326263313734666530386164383539376339
|
||||
66316633663638393136346366313130303031333664306332383736653438316131313862643234
|
||||
63393837333238316330383436646462613963623433363438663230326635636532383931626438
|
||||
64636166653865303333343166363137316439363938363732343465636163373733363265643136
|
||||
32643461656238663666623165633639303738383166326565623937333532373739373961623963
|
||||
65386630643865646162373136343661363938393661393639333632333339373330353961303039
|
||||
38653633633537613834353030623664636336643166323162396334616232663337396463306132
|
||||
65353166353663633263373362383661356230633763633065656131653036666664653063353539
|
||||
36336436646337313261333462656164643138623565366564376262646365333136616262363035
|
||||
34363037613633653963623930303135316138343561376162323635343234616231393864353537
|
||||
33316238363964313764616234636563333034396433303235613533633665396435303631323862
|
||||
32313363643737393630383336323161616330613465376438616639623139356234363165326437
|
||||
65376531386365363437366263343136633139333735386661376563633839316639303461393331
|
||||
61383966363830663435383530643532343338393032306430633630393430653635643036656264
|
||||
37623637643061313137616336366236313762613632376362313363313036623736356439383837
|
||||
61303431643961633330313735316439656234326330306230643965393138383830336564393830
|
||||
32613837646331323632396235633833303864643264663135396632313161343564303133346332
|
||||
33393064393261343030643933663264396164373965343937396436326532353565323732343366
|
||||
32343137613136646536383833356331343336363863666431303339313861633761356262336638
|
||||
64643933306635646137306637623430303966643037313634316264303734663235663134616233
|
||||
64363639623764636362623236366536656338653962656563366238393635373136313531396466
|
||||
66666661393462386632303534383865366139633337393735383066303963653231376364363036
|
||||
32643362356264393538326131626631356363323135333162636565343139663133373865623430
|
||||
65653138653736396537373139643462323362333832323338383131343734336631626132306633
|
||||
31383632366431663434326664383937613032383735323731393365663863626436633935613063
|
||||
66303735333964306430643739656333626332313433643732623739363963376536393163376433
|
||||
38623736623231616430323530633165336233303239336134353564363863363165356331373933
|
||||
35323035383433303136323562313863646531636535363866313065653230393262313930366266
|
||||
66373233323334373937346336363461313061663937633563313638383661336239633432306230
|
||||
64396432663066343935326530356131613833306333396130363232346339623431303631393334
|
||||
39663231353332333966333339316334643262656433313235343532636436333638313063636334
|
||||
65353362376232323937376232313463396137326533393965633061376330653661373036343134
|
||||
32373036616266373865626535333434636664393835643765373239376138353737333733383362
|
||||
32643636376438313966633738333339323634336564336539663134373935653962323030643036
|
||||
38666262313839666635643836646338353965613538663231623561373033306365396338656662
|
||||
62636662643663646232643536653365313836613834666231386466316265656236366631323862
|
||||
32343739323831613235306137366361386164346533326339313731353365333637303234613764
|
||||
31316336336235386233386433653336363563343662623566623034336161653462386633313634
|
||||
64303234616166336235653739326239303664376233666638643332393931356238633063336462
|
||||
30373363366361663564366233613663346433313432353830633831366331323330656538653930
|
||||
32663334373330333738356164306232336635633261366437643263663137393233373863366661
|
||||
61643939626564393239666166643730376266346564303839383339653666666237303262633839
|
||||
33356364353666393938653136396631663865646638396236376261336434356163616365646431
|
||||
35343663636362653430
|
||||
@@ -1,37 +1,37 @@
|
||||
$ANSIBLE_VAULT;1.1;AES256
|
||||
64363339393463646231316564663465323830613462303830316133663634306164363834643864
|
||||
3634386261393738333632613334323761656262623561340a666334653337366665393336373935
|
||||
61313837633939383639616137633534663730366464626234613736376635636138356633643632
|
||||
3866623764323463660a356664353832323131366235386632313363353933323735313335376537
|
||||
64643863626538633537333138306463326136336230643636363831656131336534363536643033
|
||||
66326562643035306536633836346338663436346432613530633637396466393065323563363262
|
||||
65373262316136313739356336333735663863663936303165316366663266643861656232393839
|
||||
31363237646432373863343832333930366266613435626330356430316238343862383732386163
|
||||
36613364393030366265366465346566306136666634323061353332613237373737383434366631
|
||||
63383932323534666462313263363439306538343462643036346230343436383337356461373662
|
||||
37666633653334303166323936343034646365366635646266313335643034383234666264356538
|
||||
36326437396366626235333635353430373739366330383633346135373061313766313962646630
|
||||
34386162313632353931656165316536336430376234626237343635663736386464323438623466
|
||||
63643763313539323166313864366665393361663365643139303437303530363230366336633364
|
||||
36303339646234376165306261643039636133343964383832346466366436363839636664313961
|
||||
63336536373064653633373239633732613837653165373631623431636437316336343965393832
|
||||
30316536313562643130366339383864306533656531633966373237646639653066643831383439
|
||||
65373133626238313830363034666461323964393639653237353330363966633536313936663066
|
||||
37333135626433343536326635616436376531333434643738626634643036366265343332346233
|
||||
36336633326262353261366463353464306261633666373232396561393036376433363465336361
|
||||
32646466306539363564306131663437336334346365666630306431363062356638306334313365
|
||||
33636233613138383433373931353065333863303336363265346439303963376336366662613838
|
||||
65373830636130623334333134623063383866663133326538666430333436316230363439376662
|
||||
34616630613164303831313561306334343063616663616238303235653361643833383630336438
|
||||
31373431353966383332663632386136306334396333653132313534353936663936653762626236
|
||||
32366636383065356636656562396336396133346464643232656536343965313764303532363436
|
||||
66353962353262363163366631333338663161653632386365336363353130306238326132353637
|
||||
32383966636665656532633438386330383663363538616339386165643263363665306362333663
|
||||
66353030326662333335386365373662356563333532363165613038376265323161356338333333
|
||||
66393832326139376139306632643432346539623964353463626530333133323335366338303163
|
||||
66316234383133373963666566643434343164356566343630333764316336356530613930336535
|
||||
31316333343535613735316131303032303263636436623335636138616330656362633739623261
|
||||
37633234383736666136303261643737326239333735323430336366616131323036363665386164
|
||||
32313663656531326330623339653162316539643339353161363365383236333364613437623435
|
||||
66343738333766323865326337626337616334623139653764616565643239343339396664333761
|
||||
38363762623234613235
|
||||
64386561363837326339316632376336316262383063633566333337316436376539643138643262
|
||||
3137363865353339386138343831373837313236633966310a366265383361336564623339386234
|
||||
33323562373935306366323764343438303335656335643866626331343362623864666463363364
|
||||
3565623039636530370a343133313231333635333833623965343665393831306233336335666132
|
||||
62613933313862323334373766316136663033386430656139616361633961393266326565343034
|
||||
32333566383436326537333830313735343334323366313038343162316663343566383730643434
|
||||
37393765353338303235303563343464656462666232353232643562363662353631326331353135
|
||||
32366434326235613636663066363333303637306637666234613765656130343739633761323736
|
||||
37653235366561383063643962383137646662396565633531633037393563363539396361393664
|
||||
30643861623035623666393931623637303961646362623132353932376166323939313632613665
|
||||
31313931306364643463393035376264353033356535613835323163396364363735366531653762
|
||||
37336237366633313732383165326462636439373135613236643334333839666166373135643035
|
||||
35386234636163336433333036636535346234663230316236653835636531653163653964346635
|
||||
65306662313034666530356165626564366364373438613963396234333331633965303466306134
|
||||
38316534356432623834393534303763616237646666356461356264643230663139366334316664
|
||||
63633863363236396464636363663731643761646339373437393065386465353937636433643835
|
||||
32393266653035306239336537653330313066646664356137663565626630336566623664366638
|
||||
37353064633438373232653165623831393436396263656234323036663162663831353730353663
|
||||
63343564316537353331333332663938333839633230643132356531613665376133323739333733
|
||||
31626166393464656230343361303632333762323139636665313435663734366530613435653863
|
||||
31636665613330663662386463303466356239373261363162616334636465393139653239646162
|
||||
63343666336633323431323534616436396232663630306161663930323538323430336539363161
|
||||
64636434336261313930633139613263633038373438633366396166316362363731323565366633
|
||||
37396163653639366563633633323530393936643832643837363534353234663435306132346362
|
||||
61626133656635633237666162396535393465636330656665613430616263303832313732303265
|
||||
37303962346661623933613163613766333865343263333137373139383138363764396237653738
|
||||
63336135333538393265346665326235653439313036373532633738326236346630353230313762
|
||||
64393533326561623439616639613534383465373063643038356431613264346431333534643232
|
||||
64656637323665613532366135633436613163323831356266656261313062666136306437663930
|
||||
37643931633566653238343863623064343832303264333766633362373564656230303237363366
|
||||
37643666373766386233393363623932616336363833666432316335336266663130613530356561
|
||||
61646137653434373165613366373664393530353265636464366635663237303166353139333361
|
||||
62356661633033303161336339353831393931626138366263353839626162646434353138613662
|
||||
64353361666535313131633961353932663262623435613937323636306333633437373461393366
|
||||
38346531663235396263636164666332616638386266346235373964316563333365346130306365
|
||||
38656364623538643563
|
||||
|
||||
234
vars/smolboi.yaml
Normal file
@@ -0,0 +1,234 @@
|
||||
$ANSIBLE_VAULT;1.1;AES256
|
||||
39653932303639663136386366343632366661373764303863353864343562653531363865636261
|
||||
6533353662616361386132316537636462303932656634330a346162376336643638636236636332
|
||||
35623835333263373661373163363565333765643066643236646433656666623866336236623931
|
||||
3734366436613162660a633365663337383532336265313731633863393461323232646332303938
|
||||
34386263623831343731376363653263363831396136623135333435323832363465316461663962
|
||||
30356362396365613339633932303862323566623832653063323633353638633235626430333539
|
||||
31373839653638653739636364636536643735623735636433636336346238363139333330366666
|
||||
38333966396434353737643166343339323832313133363065656330663562366463666331666465
|
||||
31323830366536323732666363383838393131383562373336393638353261383932613561353762
|
||||
30343839313334643630356265623636303461306432613538316261383431333139363939303239
|
||||
61356262343438656538623330383534613332656265653131636534643566333231346239343530
|
||||
35653334303536323761653965323335363962643866663338343437353066346530323836336231
|
||||
38373063393337633233343361613735643864313465626433643439303830323764303730393637
|
||||
37346563636134313364653935656365373632303237663939623439373737623634313330653436
|
||||
64336434323439303434313063313765616536313138636136636133383561316236316136353463
|
||||
34313864383734326633343565313436363062636161666134346332613365646137623964393634
|
||||
33653166353237373061306139616137356430373330613461643562613331393561363834666565
|
||||
38363763383865616263393162376533353035643164363331313361363064386166643866363232
|
||||
36626563363331373363396564333231333561336637623739326635633939303363383832323264
|
||||
64373435363265663130303733353633653037336463373766633462346166396633316132323862
|
||||
35633130643364353664623234653363306138643661643963633936326663613261656336393863
|
||||
38373666353166636363323566303566663161373237653866643532333134616666656439376161
|
||||
63353138353333343162326164653939326363383932373036366536353131383432363839353133
|
||||
32366238633862326237626564353565313962663462336435373230336633623630373231303761
|
||||
33633530393639363134343663643237353366623164613336303466306461326163653438366133
|
||||
65363132346435303965623865623864333930623965646365626365373236303263626434303238
|
||||
65383365663034373132353337323162623038363739333861386333376261353939336239326332
|
||||
35623138663664313035366363303061343834343464383332623831653338636263366234353035
|
||||
64666439636436346338306434636631336161643362313764663466316337346436386239656138
|
||||
36363465633962366139623965336234316235303834663363356566626531336133656466616438
|
||||
30373163373566666335663364313139376339613235303634616532343038346132343633316631
|
||||
62393833376331366230396235653631333037363337623265656264376233336361363032373338
|
||||
33343165373232643131326261663665316161613763646137346534323064393039353737333139
|
||||
34383130346431393930616431626136373038643335366461343437333966393935613130626437
|
||||
63626433663961666339393664623138333838313736653163363737646161363161653866333864
|
||||
66623034346665633962666639663032393938313536306263623464363236383232356131633535
|
||||
31343266386437613862303435383732333063646465383631623263623830666538323264643564
|
||||
66636565613339383435613466633733616463363962656535663764373838363936326132386665
|
||||
32343062666532623862666639306338326234366437303737613838376139636435316162646538
|
||||
38653836366262373662663930363563643035373739303435376634396431303038393965323533
|
||||
63613132613236363063303939353766613763376365346133366134616537323437663135633765
|
||||
30386330653063316264306235323332333862393033346338323830306239666364656131623039
|
||||
61393666356233383263363961326637666664643161616362643039616137313466663863656564
|
||||
62336563303434386231303738313531626137633861623663343533353835306631653130666437
|
||||
37623530653965306437373763653533336337666432313562643366323764386438626334353365
|
||||
62373365663038366562303062323163373763346330313832383263306263363931306165333565
|
||||
34663833326566663666656336653334376539313066376533633235303332636631633637393965
|
||||
33633231366635656434633037313637353065666533326464666133643035393630623435633532
|
||||
35613936393032663737646238393230643938356238303365613965326166393062383932356233
|
||||
34643637643831386262343936366331393133636130363064326436663764306365666238653633
|
||||
30363365613439643333633732643039363465626362353861653736393434613735343039633662
|
||||
33306663366163323633636132643565623236363661366664633266623434663637376361313865
|
||||
37613166393831646264383062623031333330613535623964386637373666386663353362343465
|
||||
64636635646264383538333536303138326536623465303038656261393063363132373732616433
|
||||
63326232326637666235343266306461373562333264626438653263306363376138316165653038
|
||||
66373831626231313562356232316339393633646433316166623261326238636633366339333761
|
||||
62363037653562376438613431613731346166646331366664633136326535356534336262313230
|
||||
31656333336464613135666238363966663961626235316462363231643131373035636132393637
|
||||
61363864373062656139616435366366346335653334373330333730396461633736313164613339
|
||||
61613966303239313561616461633861633530386533303738613231323832396433363732643039
|
||||
32326563333636393837313035623931653662303231326432396464333438393434636230376431
|
||||
37336238616638626432336238346138633234363037633437636631313566653664626536316630
|
||||
34353063373937326263303538353662366263306163306162313763366362616431386166623665
|
||||
30343431643539663935613561353562666138663932343963393966653665363238393461326532
|
||||
62353162646266633533316430346561386138336566333632633965306132333564643930353434
|
||||
36383239333562646437353135353738386335623130333636613166346239393636613633353236
|
||||
39343161376566386432623733386332643964383133303838303265373433623331613434343461
|
||||
63386332643030343934396236353436636134643735323035386663613635333336363535663734
|
||||
30636661646164303434656236306636633263623665663166633766313261393235386261306338
|
||||
38356439623363376231376261333632613039653436303732633532663166643066613130636534
|
||||
64653438656165616438336537643730333066396136613036303033306433633663663536383738
|
||||
64613839613633366262326632643931633262663537393232396539306666313963326639363664
|
||||
61633963303639656530613938323632306334633439626538633833613732303462346539366436
|
||||
33636663303463656634336463326431366138366333396237353564396436343363643833333161
|
||||
35333631646138363265643861353137376465353238373661333832626130343963353463623035
|
||||
33343666656532363932623131353336303362643033333635613332666232313734356337303966
|
||||
33323836633163393634376664326666316264626339323332336566633834393566613038386437
|
||||
30323634663539383434663831663439383831636630323166633332363364646363363537386534
|
||||
31336535396564313334636334313939363233653866393833316137313837303633656634316535
|
||||
65643735313137353936623964366461323064663031383836623230653932616263373831633764
|
||||
30363537626163316361343937356366306339646336306539373865616636363461323663333232
|
||||
62653963323934653865353861366261333934656230363538373133303538393035623366303866
|
||||
31616536643061643665313038376334616166376364366263376239623162616465613861376630
|
||||
35313966663732343365393335376532393037313831396464393135316161373532626633383239
|
||||
66636438353330626538306164383338323761306538643439323533656161643334633763353163
|
||||
35626134386537663766646662306365336531626632383637316339343762303934303039653035
|
||||
62636134633734363037323164343662376332623336626465353731663566646539613534663266
|
||||
39343930363933626562336265386237366334343538393933376666343362623538363163366463
|
||||
39653962353235346137633735323036653762386437356566623537666161626433636335343139
|
||||
32653164623931373139396335316334613337643736633038646432376263306635303261636535
|
||||
65643361303865626430633833336239363238626166323536383130656238626530326536343465
|
||||
38373938643264333561626466383964316664333236393038383561643633616666353363353236
|
||||
63663261303734663266646661353265386635616336653730343863626165663662616165616166
|
||||
33663037383935393366333062393437653838326538363662323463633430373336393838636438
|
||||
62336464383265306261626139626365663266666266386337323338643231343430653339333032
|
||||
66373936313066303934613235363434663839613033383337376437326532333964363565316463
|
||||
61633562633532383535346433353837306136303331323665326339373037336137626230333961
|
||||
33363563643332383237386132656439303039643231656232613261303665323466613063316461
|
||||
31343739343037373531386662613032383137626430616632636432343364343766613366613762
|
||||
65396562346562643562343631316663646531383665663163343266363362383166393965613966
|
||||
63613737643361626430653531636166663961366634333664396635396436333766663865363131
|
||||
36656439616633316434666561356233326338313366313935313533613162353432633634646334
|
||||
31396461393934323236353531613766636133353961323636633831396138663533626262383335
|
||||
64656439393333623836656338343831323830333966346630366639393132616161643965353832
|
||||
65393066643361353533366466333265363736383662663363663064303661366530656630336233
|
||||
62353365303630643766626465346332373937363666383632386234393230613861326131613261
|
||||
39633735663863633638306130653836643330386263313439393132356334623331376561613761
|
||||
39303238643166353435313331323663333536623531316338616235643530346266306134663066
|
||||
36623737393061313465346532323535316161343364346361656135313731393530636363333538
|
||||
65393863633834356236646432346138333330313038613539366432303736313363666334663438
|
||||
33326263656138353630663435346430656330363637306639643433323439353866613461306538
|
||||
39643932623133393366616232356139333264353037383538636630376165646263663366303661
|
||||
35393262396161653638383639373530313939313066333938386532333936303833353536343134
|
||||
37396565303961663836333837353936376566653431313034623566613961656237383135313734
|
||||
61363233633562663462663937336133383532323034336130353634633763346237316366383233
|
||||
31306461613163633465656239336137373563316335303466376636613561623634313763646336
|
||||
33373935346436613164356238366536346130323935643964343836363433616334303763363164
|
||||
65356433303935363230383635396137633264353063303434636466306431333631323237633536
|
||||
39616162366362336131653139623638346134626365326130373333653039653763616537306337
|
||||
62383663346162613732393736613231383334336461623430333236323566623866366534616364
|
||||
34633765363462313834646534353031626464643965663537336366373834653738653130626430
|
||||
36353363626538336461653261646266353661303237356566373966656461623232333337326431
|
||||
62383630373035316436623065313138373936346161393966386664653732376562333738663861
|
||||
66393439636133343137303165656666326461336131636262323732356538626333383263346638
|
||||
65633263646363343066636661643663323865393232313464646566373431313462346337353632
|
||||
34323837306437633466643362303933646666626135303361363539326536323163633737393362
|
||||
37666162353461656235646164303038313365396661346139653338396536343739353366313062
|
||||
64643964373235643832636334313862393365356463353465313333653931616433613461363739
|
||||
66633562333764613463396262393933316337363165663234303864383632393339333132636265
|
||||
63373835633763646530643230653465323366663731626666626139363862653461373466363631
|
||||
36366166633766366439656538333336326566663038313264383333376264386366306665366561
|
||||
31333335393833393933313331633036393839303131323833396430643766636437616463656432
|
||||
35653431346132656531353362323262663066386534646336306335656263353130613562643065
|
||||
66613263666239653232303230306164306532316565646337626434643864383932353534356166
|
||||
32393137303830623436323566663061336330656166646439613436666565366639376333666533
|
||||
31303663663234326438656661666365323339333666633065643966353630353164666236636463
|
||||
38346533316438343435353466643365633933346162393736643564326630313132303464653533
|
||||
65623130313239373431363563396134323663326663306637613564353733316534306264303237
|
||||
34376463333764353061336631366534613966353863326533626164346361616463303262316438
|
||||
66663662353634393735323332366163373931656262656661643734663333386635333461316535
|
||||
62346239363531663139333335346336636264643332653361356132666236373238653861396230
|
||||
37633362616336376631343064323731356430363034656366623365313666333361373062333035
|
||||
64396536646436363334613438646165373864633962346437653233396362373163373736313833
|
||||
32376335626332626161343537636264646537323030613135326439343932353233383738336634
|
||||
35323536303466313132323237666338626262343265336533306235623665386662666430356662
|
||||
32393531653732623431396436653663313538633864353036633930366566373936363738353763
|
||||
65613330393361336636623631636666346166343261323930643033346664303238643264396464
|
||||
37316239636665383861323834333431346163646639313933326135326262313362613465666534
|
||||
35373736313530346530346363653430323766653466626563653334303132303761383436353832
|
||||
37353936383436613237363738326265363465646636386239346230653364316539353835666336
|
||||
32653035643739316237653238636564303033666135383637386465393534613432663065633437
|
||||
33353734613662633762666334666131623331646266373062353065356138363338336236616638
|
||||
62636530663661393037616538623537356438643565393333663435653033323330303165323262
|
||||
39396334333065393265373835356132383365383737646162663962303532623835396430353233
|
||||
37326564326566376566343833623134633732333130336439353564363030353332666336643036
|
||||
32656436646437613830656137333938346263666332313834626265313036663763666165386130
|
||||
31343538323239633163616466353361393932643865346163396265653434653166356334613063
|
||||
64376364373432643033613033626233366431386232343632353130633933613430306565626563
|
||||
39333761313135313866626131386233336663636238343435346566333235343330326265363264
|
||||
37313538623331626339633233376362633462353165346435373362303330646265663462663637
|
||||
30636236343037633534643739366434383765313064303766353533323533326635616438383232
|
||||
39623634633161356232643037663530656333643034383437313061346634336265343637656335
|
||||
61306234376366323266303966643963323862613638626532306331396264346139303739616562
|
||||
39623035646539366232333536353836353034663263396365376665623939653365313362613732
|
||||
66353033323237643263663434373535666337303233396336363933386666383531343235393736
|
||||
61353935306236313363663166613461373635333231386638306664383232613832326362363933
|
||||
39633730303131383234623632633065633637646136373736326262363532626666373034623631
|
||||
66353362623338356534376632653361346334303935663735396636386434623130336364303634
|
||||
30373639653132653062303538626265666339653535383337333035303530323366383738663730
|
||||
36383536396337663963626162376531623963633436616631393966303632366231643362353736
|
||||
65663035363666316339373537343830383835366337633862353763363530323963666465666539
|
||||
38333433316164323739323934326665623130356530346166393562393836313565356339633263
|
||||
30346539636139633039326162343936653732313837306362343764623862353239343261373730
|
||||
32653636383266613465666232636131396662386338643531343462326234623431623662386238
|
||||
32643061353039393034363561393137643839626238323462316530393261396264633866643861
|
||||
37386337313262633066663839363034643861613366363534373062616630323337313664333262
|
||||
66616636626264633937656139323731346565303230643436393966373934363639666233326439
|
||||
33393361343939646334316635313262656365393238616439386235316138323334623039636133
|
||||
66633037666363636534346161333264386364376335653831333830653563336630356466346463
|
||||
37656132376166663636643064333037326439343435353366303231343262323966386463306539
|
||||
61346337383966393634383935626436653434353166373563346132303733646239363339636530
|
||||
32393737336264663461656336326562373032336434336330653232643230333162663639643966
|
||||
35333139643963336435316333393664653432323061666563636131313761323739623061616663
|
||||
38633937373465353862363534316165623836623331663566363362396634643532303737326236
|
||||
35386236653734333264336434623439653036666464633333373731346632363264363562313465
|
||||
38376236356431623463666365343262636236353432373762343663636663343537376637356233
|
||||
66636436363566383536363430363134613732323433613765303262316535313361636236383262
|
||||
35346263333630633332366331646331323532323139663663616333383862633264626664653235
|
||||
39323931353337633036376133376238383536363565623931363130326336303531656539653930
|
||||
36373733623961346330326635373366666339393833363564373338336430636137343364643164
|
||||
31313936316430363832613263623366643262656561323432646136656261366331613235613834
|
||||
36383135626430393130313361363965386465363035306364643862353331316162393335303636
|
||||
66653834626533313535656661393563663231646538653937333633663438393765636534373566
|
||||
35393662373365343436323536363261383732393036616161333266363034633161663461383937
|
||||
34616664396534613134363437336163653562396332376334366561623534386635646231303736
|
||||
30393466383437623133346233633735333737376239393662326265363664376334366633636163
|
||||
34346637663361393239633337393031306135366132363133393766346562666464306335636531
|
||||
34393364386432366539373465326163656666333033616363666432313434343963623033383136
|
||||
30373830303031333562393632316334363563313264663463643066373337663931313363643535
|
||||
64633835626639323034393362363462373935383164373833323036336539353336633466653932
|
||||
66613163306530626138653434343330303865663139636232346536383363346230623363343262
|
||||
30323266633930633866313834653433396564653234666565326231323335636530366338613862
|
||||
33373639316433656436656163333139343235363836666634393038393233336538313766613538
|
||||
63656661353363383530626539613631326664636633343939303562393537626564363331343939
|
||||
36393761333561653034386265666663376231393061346164653535633135396536336437663163
|
||||
32663762616636316434303331316561663034323538353163656531346564323862353634633761
|
||||
63396134643337363266383765313931343830303730616261663339373238616664643161366666
|
||||
34316463383732326565316139326665363238633231656665343666313961626561363936386262
|
||||
33646438373936643061613165346265356531656537666333393132333132333230303732366538
|
||||
65656136626161623064336338366166653037643937393164346137643738323663383263326661
|
||||
66613537303330613630653963633366646637626562626364316433376465616263656539323233
|
||||
32396166613932386635646539623362616534346532623637656466383033333935386238653664
|
||||
32393735366139323931396530626532386237393631613737363039323437663331363734663430
|
||||
33373764653834366536386432343162356165613534616563326537646534363930343139316432
|
||||
61323635666663346265326633353631323865356233316439623165316138636334626661353236
|
||||
31656330626565333130646134396264363765653263306538363934653764316430336236353234
|
||||
61353264303430666632333031343163656636633935656262356561643632613864663334386461
|
||||
30323236306165386666346630336262363733646539303662396435333333663030343534356535
|
||||
31626663343135316536316335393238316630323362383962376265623433373164316431613238
|
||||
65656263363336313735343332343839373165336561363463303361616364653436313938346234
|
||||
33303635613266333830643132373535613033396138373363633136333238303132636433386264
|
||||
35336466643232633833623733353433623364353834323739346533333065653232313461393862
|
||||
62343438366663633836663132663564633166346566386364333830386562636538343137336662
|
||||
66663634373736363236313830623638343063326232396263353730646365616663396638363339
|
||||
65303661633665616532306235626563623233323639363432356662653335346361343238313731
|
||||
31326230353636393266613438663034336266366139303263353633356530313864363630346133
|
||||
36313266363463613066363763393538303766316666343665646565313961663362396430616336
|
||||
31656336353161313365363439386133343337303936383366613730636161313739363538326533
|
||||
32633132633939663863393834643564323366383136643531393338646461663565376335373832
|
||||
37363365323233616237633266346161643530336534373566363061386437326661336262633138
|
||||
62376337373434353235333635343461376236636130633966343732636266323064313038633136
|
||||
65323337376438656232393935383065656131626331666135363239346531326564333736326538
|
||||
3361
|
||||
282
vars/vault.yaml
@@ -1,282 +0,0 @@
|
||||
$ANSIBLE_VAULT;1.1;AES256
|
||||
31363636373766313231643432336338623264396430336564356439643834323561333131333738
|
||||
6631663464666566323834653930343966666136616530330a313031633933386532613464396236
|
||||
30333131303362633431666262346363353039393861653230343466316431353862323063376365
|
||||
3364373162373938630a353766653662313763616262396166333765316362356363376266633263
|
||||
39613163323439313963666235663135333039363939633962346261306539643936366330643138
|
||||
62623362623831383366326332613836376430303564383839633130326266383135323631646136
|
||||
30623063616438343365613736333438643231656461393964656166396537636531646537653761
|
||||
31613866393766323631393464653831643663323536366631613539346366633232316230356530
|
||||
31393231346636313635343838636461303839333135336565663035383262656565616365613065
|
||||
65383530366562663933636634316263346236333139656137653865373034646239353465313936
|
||||
61303339616337353534383231373534363330633164326566333739663638623362656333396162
|
||||
39616333666463626238643038373864363939346131383062306632643134383339663435613861
|
||||
31336362663364393232326636313630313266336237323561663231353336646135373633356132
|
||||
32616639363634353730633138626235363335303832366533306234653066366431343961376265
|
||||
65346535316362306265336238373462313765623630373965373162343537336264356439643932
|
||||
64643565363839373533346630316538323732666233383931613334353739386438383362633965
|
||||
61323531353732373163376335643832636633393863303637336634653439383837613665363761
|
||||
61616231303337313762653262326661316335373063613461363831353364666338656261333338
|
||||
63636666636330636632626164376133313831353830643130613237323537316638653336626361
|
||||
33636664386634363665663565336632313035636431316463373735663865646265353265343135
|
||||
63383334613031646332343236643262333161666232626333643636333133616536623537616435
|
||||
34303561643931636335353430303338323435663134363939663539373836643134393666313864
|
||||
34663439336232356166363833643365303637393538633931393037393931636461306362313062
|
||||
34386133616662623835353537353763323635653130373934386137653831393733663033313931
|
||||
37373062316561663236613166353963653534333266373734393033643965613830383137613839
|
||||
64396535613031323837613464626538636461356330363538346535666438356333353063666366
|
||||
39663337666234623339356539323939613465326134653964366438396232366639396434626365
|
||||
63323135663834393135636334306634633838396262376664366530326139303566643663316635
|
||||
66306232303338616562316639623666653732646261393561303464353132333330663066663533
|
||||
63343963636163616264366361376339663731363930656461336137346639633866616138643631
|
||||
66666136643434386636663130363466636230666138306165356135656338363563343432623161
|
||||
64653835353235393832323537646563303761353363346233353864396563323437613463343632
|
||||
31326133656139316662386236336361636266633439353463623662343934373230643866306237
|
||||
63646339316138363966303535383434326662316131303037373039366436366361623036346434
|
||||
39376333383636626433623961326632363534666665366531633232643033383862326332306239
|
||||
62373335333735636232616333663231323664333835313136346630653437313136643136633463
|
||||
39383363633337323231373933656462333639383134316139353865303432666630633936383961
|
||||
35323738393365313661326538616134393465386362626363356638303839323436313865623434
|
||||
39373431373430663731346364653934623164366430653966623265383339623263303433306566
|
||||
32363265303966316533303336356238666239646636663438366235383665393965313235393163
|
||||
37356663363635613437663534396332333936633663656332373665353030356539333038346465
|
||||
34303832393866633230646438356364633339343132383863336335363732613665663466323536
|
||||
32653064623636356233613639633030373930656536633633653638646331326262656365393835
|
||||
35663163616134653261646461353035323236376339663663653536386137613865353732666131
|
||||
64663534666664623266303532633838366631383034366335363065343565343632656434633637
|
||||
37653764623861333034663761316330626336313166393965323039323031363934386237633930
|
||||
61616636306535643561353439373134386462323133376534336439313762646632646231336463
|
||||
34636331393966646133653665623732646334393864616339643134316532363061376266666237
|
||||
37663232613633386366366364643532636361633861303535353632663832316666343362333331
|
||||
32366365656363366130396231623462323262396539666533333861643434373561363363633936
|
||||
32383734303936316634626561323864643564396262653934363565623663623161393065353138
|
||||
64303434356365363638636231313432366631356436623663666365363036663865313062393932
|
||||
39383035626535336436346663643935393664633965613231316533643733336438643232363066
|
||||
64303931313631303337663862376633316563343333313361353561633235643332643334313739
|
||||
30656231353033626166393663663664373265616564303761616437313463633966323439383139
|
||||
30303362653463306232353161383838656538636130313764656663656235373337383439366436
|
||||
30303763323465663634333232326533653266303662383536343134336461333062643637373564
|
||||
39616531663863633630366435613934666664326266623336633139623931613662633334346264
|
||||
37366532343361326466303139613066333539343735636162366238616636656562336331353131
|
||||
66343339633462633231383935323139663332623264306362366334353436386139323161336430
|
||||
34636234346533666135313861356362623936323962623332393535396631653463386137346566
|
||||
61353265646138336661313663623536636261633630373239383134613436316130363939626433
|
||||
62666263356434656530376335633238323665616561613064613237383432386466303836333437
|
||||
37633933393762376433316566316634343131373564643133376430326265373231386536616537
|
||||
31346332376230623236633237373566366230653262393838376237356537313839626535346136
|
||||
32303538623361613039343837323366316261313939303233646264643736306239633632663739
|
||||
38383032376538613932353732326163363936623963663031346335383738356639326432336130
|
||||
64323937646239303066643631653138376562633037633833653063313462633664646138356139
|
||||
32376461663261366338333063303031343432306335633130323837326133393032393061643065
|
||||
32353666373564386161353962626162626438613230663963303637636639366563396663383938
|
||||
30313966643530383266633130306139366564326330663539376561663865366561633736623435
|
||||
32633935643566363132633562306138623433633564343730326231313333386363353237383436
|
||||
66376330323565353063363066623336376531303966303630396139363436623661333635343634
|
||||
31613165623833646433626661643236316639313162323664636662383934323830636331616531
|
||||
35653430356435643662303638656263393865616666613361633533343932376439623230613030
|
||||
61626364313734646263303836356534653864333637613262623335333862666434616234366231
|
||||
64316263303839303333336333393566376266373833303839326664643466623765623731333961
|
||||
64303662613933306133343432623263623739636334626466333963356235383965336165363361
|
||||
66393639626536336461373332313364636639353433363366366535323439613963643930663263
|
||||
37666332356331353938306565663066663561336231316131656639373235376462373466613039
|
||||
33303734646163353334643630353531646238656139356134656635313065383165383936396437
|
||||
35623433313633393462656432386537356166313735333162653633353865366634373930363362
|
||||
36316430623264383662636132373031353765666164306435356334626536373933333163623236
|
||||
62613466653265373266356166333861383930636632653666393439346532303633643861393634
|
||||
34303261646435643837356139656632333139613935643330663364373131633334323239323662
|
||||
31653435356264366366363065623961326336643364653039363536626535616531323237316236
|
||||
32343637613561393230343630616536643534393636666533333533613964613665313139346534
|
||||
39356663313730363662363331323137363538373339666362353030646564343134396539383766
|
||||
61323564643466323430333461663563623366356231346538313435373938306364623931303166
|
||||
38643630313165313638626265313961393136333663383365316333636430626130316639636464
|
||||
33376434643235353338303863306163363739323331313833356532363839393031333937666266
|
||||
61306138616262363834353638366438343166613934303131376231336564343631303236636237
|
||||
64336530623561656138373236623462363462333665653738396661356263643430656365633862
|
||||
30376336363637656164356466343236386337383738373166396462313265633439346361396266
|
||||
38376463356364663530373631363966613366663234383731326563343531353733326133636334
|
||||
61323332333139323136643831386235343065626462306439363034346635373430323138333833
|
||||
38663238373737393838363765636533363436666239626634316264396336306633383065653432
|
||||
62366239326337373231663561326562313765303534623566626333323631323235623661373163
|
||||
62303133643431653661656535306362323237636466653864316232356332643264343863396564
|
||||
35663161636433343662663439353661626462633665346537386438383266656562363230336262
|
||||
65366666373633616232386366306334396265313133373236613461613265376366356634653536
|
||||
65363630343139336635346261363831323431613737303632343037316330316630643330316561
|
||||
39626438666366666361353637336565393533303362343462333662633331343038396662356138
|
||||
63616333623138366231306262373633323139643532613035313065663535316463313432376465
|
||||
30613336393665373262336663393964313337363135623466396466626330636162313033613161
|
||||
66623763366537356463353164356539613461396337353566323538373634356633643462323363
|
||||
35306331343532383161653437366430303135623762623634393536376238613765326631363166
|
||||
65373130316132343930386166353235333265616637656239623335333662653639393565336637
|
||||
30333764303664383033386237303765373834653931623765666530373033626166383664623332
|
||||
62653331303738613662326533343664663864363035353239336130613962303065363461353233
|
||||
64343463616633353365313632316366373163383031363734373231333333656661376638383663
|
||||
37393665333966353361303864666662383434646433396266306566303732356231363261633466
|
||||
35386533653532623932383464663961336561376331653362303833666535373538353934663635
|
||||
36663735623831313230323731383131653433353733383531656536336166303066343862326231
|
||||
36366336396438316435363637343831373434313866363966353033613036626438636236393465
|
||||
62336138313535356430363966643665646436613332653432646233333434653063646663356264
|
||||
65656361613762623433303262633238646634373961346334343339613233316331333061366336
|
||||
34346162643631303461336133613032653139646363343862323736636131373563383366626133
|
||||
39363232613761326365383936313761636361633834353432653134373233396361666365353239
|
||||
61323230376661343131616236343561353432366238643732373335393666623533353435323033
|
||||
32383037343363633130373832363461636264383239613133373164646330393334633064393337
|
||||
32323734623333393132633434383739643665333631366364356261616339386336613538653532
|
||||
61346238646531326361613432353338623261373462326531353532306534353536623765303265
|
||||
66383830636364306333663038646135636466623964636461633664626638626666616138633734
|
||||
61393262616464366462376263376438656465386133646463376139643030326565333264353436
|
||||
66333131393863393939633066346531346132346262306330643031383965336535393263336635
|
||||
34386335636166313431386461386235386465313935653561333361363963383036663739613439
|
||||
63346432353533663438643533646662396363336137336566373232613636313039366630333161
|
||||
32393937313333613062653561386232623932666663303933383731653032363763663361323661
|
||||
36643932666437643663386330383839656432666335623737306239373537633936333637373230
|
||||
32663132303563366538396364383338306431356336666263306263306133646232623437363535
|
||||
66396166643462346337636538393137303332663936633838646338383961373632373536393633
|
||||
32313866616335636536393930393437356635333032646364313230333261303332646363333934
|
||||
39666662646538363364303833366632643038646232613364633161396130343235383239336437
|
||||
38313033343336373635313932313034643632666461303233343663396562306666383135626135
|
||||
32366165303063336264646537356165326465353161313830313939656364373065333131636238
|
||||
31383364666232313139623935343136356435666562373739613962343263626634646264653138
|
||||
30356631356635356665646538303661316533326439343662616530313866383137633035373331
|
||||
36323031333935366266623132633866623437643336363636343732663464326464306138343138
|
||||
63356661653665313330346561336437633366653635353339303237323032343639333332643939
|
||||
32323163353738313031333338353938313933333665393233373235366639366435336133323633
|
||||
33343263316566356234663262313235653136316462306632656462343363336363653031366131
|
||||
31643332633635663931386161626539353937666530326133393863663036333934623834613631
|
||||
61343538373931393032333238653238616235326334316666653935383937343234366239623137
|
||||
37636466346264313233393561613635303330653435323961343938363263306132303739323566
|
||||
61633663646632396531376338616264336264386635636164393661623931656639653363653862
|
||||
34366364656136616338643033366530326638306363616433646536343137316234386564393639
|
||||
33336562323032323366663330623239353664336564313564613432636138316132373261383961
|
||||
33656463663030316536343163303030343663396237393933383365636536323230326436663032
|
||||
31383030313130383566623936653965306264613033643037616334373831656331613235333064
|
||||
65386263396230343338653931346466396565303634643631396364613737366262626565353938
|
||||
32656633313031613566343730653230626564396332316432386464303963663062643237656133
|
||||
31313762373038303237393232333030386235626338336464666665336632386631346436663738
|
||||
31346261346238656633366335303463656636663432346266663435323466373639326439376131
|
||||
37313039366363636561613236633938383966306432386231666563663562616163333663333266
|
||||
36303065666335346135386234313630663062346139343530313435326635646335323733326139
|
||||
64653264386565366631356162326262363662656563333165383666616338626432616664623164
|
||||
36333536613133643537656438343564373937383433646336646330376536306136356365323563
|
||||
35353633353065373735616431313833333365346233313264343165636438383233376136343964
|
||||
34336132386631643833383139666136613438343737316530353031626261366163396439323864
|
||||
34303135316465613832646131346639386135303030626334633931393338373037346136383938
|
||||
64303834623163383736353031623663613661376136356561316166326631396235336164383534
|
||||
33363863666264356431306666373835653230616138393936306561666635633934343037623166
|
||||
38303236653932366639343164323334333162313532333165626461653436623264613865346664
|
||||
35323964663762646264366636333966306361313234366130396563313433646662663533303361
|
||||
61306132666334373965633863366363323364333665396332313536353234333039626564393133
|
||||
32393862383636306239623839353238316562303964303939386437633061356234303437343239
|
||||
35313539376134313436666236653933323565363634316565326330656333653939663661366433
|
||||
38303733663632376166613333333839313838626464626531343461363361663966626262323032
|
||||
31646639393833316639333362313234323733613633626431333135353663373464336666373536
|
||||
62383737633162326134316365663739616237303732366364386162353734353038316331353835
|
||||
36636233333766353835623133383965313637396662636466393638353735663630666633616233
|
||||
30386239373464313537373338396636656331616330613164356138336663363539353733663261
|
||||
31383863653537653637333330323432653766313135346336376539323463323231326537363036
|
||||
65376439333262383831643863643535666563663133393035653362356539383836663262633666
|
||||
62353537623265633863353664396535623936393962346465643539323830316435656236373861
|
||||
36366262363061353439343839623537643539343062386132376564396438663865663861353262
|
||||
61373730313466623164343764376538653932626132306263356337363633383332363137623136
|
||||
38356661333561346432383937646261343438633066393034343364643234363332303730336436
|
||||
65336263616535343335366565386466306434386566363561633830626337353765313662326232
|
||||
61363230386437633439316366386534363066383434333466383336656437346634396330353735
|
||||
33383336653365643730346463613761313136613338366233623436383430363033313061613538
|
||||
63643862333465396431613237326132623838616236623834323563633032616536313632303233
|
||||
62643832383931393563323138396339656566313134636238353833343964353438333730303036
|
||||
61376365333237303062653933643061663534386565656330323335363239633738393266376633
|
||||
34626234303562303933343466386535303363396565343439383436643836333039616336383165
|
||||
33396661316336613164343464386534313338393339356461373564323062396164323934366465
|
||||
35363735363438346636666431313964333334666235663764636338613464353432646464643563
|
||||
62396235623639663266663539653562663131346333616266613566633138303331626364623165
|
||||
66343830646635363865383562623433653537613236643735353561373463333233376266363664
|
||||
35316363393765313233313232396335346466663937336139316365366537616334666631636662
|
||||
31643335353263653737346164613238393731393838393565666265306239373564363030353337
|
||||
35636634643366666563643831616431396663663737333030336233376337396631383965303631
|
||||
63653039653231343164383634373362333631613364663135396534353136323866343238363436
|
||||
37373761343431333131306264396363616662356638656335323638343233653736343933323736
|
||||
30616164336664393762333331616262383832633834616661366466643634613834336563646637
|
||||
33613062303031323861643635623364383033343564666133356231633436376664653861346632
|
||||
35333435663161326330353338353035393931396564353137366462643730633062633464353437
|
||||
30383664663564323637376332306434343233346539633032323033356636633163623566653738
|
||||
37303038363638396466323036363338653837333932643863656132373433313564333666373663
|
||||
37343038323663393362306132656231373363313262633336346430396164343531303666663034
|
||||
33316162323731636433633434326363643232363835366461343638333234666539353666333233
|
||||
37636633646232343537613431336431396463333931306461643230623833633937326131616134
|
||||
65316365663731383865303166393564643534376364353132616134616362666165346136353936
|
||||
37613133313761383138333436396635356433313966383530613937303231613433656262373366
|
||||
35383839306634333536363937653534616637393539663530336361323866623265613161333430
|
||||
30626234346564363535656563613265663963356331303063396565376334386139613361303731
|
||||
66306130326536356330623366343761326463346130376262613536343932383133303262653365
|
||||
61623033396232343939316233656562313566633734656331616132616361646531383762653833
|
||||
62353539653931376336333666393061323762666336653861643731636130353938376439313232
|
||||
32353334636130313235363634383631333532623337343464313566376437356634626138366437
|
||||
62666237653032333065613535616361666461366335366337633462343366623236333236336332
|
||||
38386264656534323036306134393433313333363564353438626565396537313836303432633137
|
||||
37333966346536386163643833663730393936333161353233303561336438336365626461346633
|
||||
64626463346536393430333565363431303530353265653532636533316463653461663365386239
|
||||
37626130313636373262616134383731353434623633653438323233663839326162326439623766
|
||||
61363930343937326532656536613534346665383931383336383164623839643137336261653863
|
||||
64373962323064316264376230623233633161613662663431353039616130663734396562623464
|
||||
31613065326266373936383339366564633535393763626363383530333338656132643164346337
|
||||
39316434323835623734633132346533343061616162653039343031303238616639343532623164
|
||||
37326164376639353330616337613564393965393532326532353332663166363266643236383936
|
||||
64303531336635376334323766643331333431306130333666613839396665336565376338656132
|
||||
64333032363665636136326564633432363739356130323832353634623039613465653134666165
|
||||
63663634636333363864623434353936666562356532663861333634643533646134366165623561
|
||||
63376432613365323031366263623035663438663639333131623863626235666433653864616634
|
||||
64363832343330623161623732323264333835323763333335633334313438636635386538396262
|
||||
65396134376438316434623333333861393566353536633762346433323461356433323133313639
|
||||
35643138306637376335393066306563643764363538373233656530363963313632303666623265
|
||||
30366462356662656166616566346465303531613838616561316532636261623234646239313064
|
||||
30373965613834616561393835363865623039343163333536326530626635376663616465626539
|
||||
38663761653266343061396338363062636265636135323238383165393161383463343933663036
|
||||
64376338306338613533656135663562363237303863343038613462393562643062666338636531
|
||||
34333937383763626366313864376438643733653962376432353935623532353963306434616630
|
||||
34353965376331613066343431353233326235666566643435663139333238333062323933353063
|
||||
64386634343136356338366337376161353636393235376663633632666538316364393338346537
|
||||
61313433646530313137626235383535656432663339643934313563653038313831363834626130
|
||||
38353235383930663839383062393262373535643363323566633937323265383934336337663236
|
||||
31306464633934313037396464386331353365666630666165383433623938323064356465613164
|
||||
35666136643865633934343661643063353466353730326431656239323832376335633134326639
|
||||
32383361623261663136636536393932623133353061656238396136643461643039313430383866
|
||||
35666362623031653833613639653531393433366531333137393332653163616233656566336137
|
||||
62313765366335376234326336663662373239373435343164313161313035373862343236643163
|
||||
37613234323231313630373066633634303736396639356138303662636565323433386662633931
|
||||
62313839313961356435323135616630373466336664366636303531313366303732303036376565
|
||||
64306531356531343730623930666161663538663233306466373330323366626366313161623764
|
||||
33656262633235363237333762613037336133613132306133626437356138316136343434626563
|
||||
37623765303865373233623232303764633132656136613565613933633465663362396531303964
|
||||
61333730393339663134646232356131383465393462623232623134333632653334336261346162
|
||||
39663135343664316635366664323530656235623633336138393561633638373566353933633666
|
||||
62356562316139323532633130323331326335666531633932323936313637323066613933663766
|
||||
31323364316235346230656133363037656463363033666135353531303236653635343464336233
|
||||
34666635356661393437336365393434353163386435383732376465346438376333616561333830
|
||||
38386135386334363730366430333337643134626435646136323462343732323230643965646130
|
||||
39313062313239316630353136613831653132376334653261393336623733353632376238336434
|
||||
33363831616565643739353165356363623566306634613138383936333138353738393433666638
|
||||
61643231323161666339313639656530376336653638323938666639366166636132393832363535
|
||||
65383461333333323430646363633039313065336366336230636336613263373765313133383934
|
||||
62313563353164376338666130346238653433336263376563373534636637383466373834396331
|
||||
38356164646363643531373039333638663466633137306463613330663636386238616434666465
|
||||
64643931666336353566613630306365623965316663653632613730343938363165656430353232
|
||||
31633963303434633266383938353638396661376232643566616364653561653339366564366633
|
||||
36633738383736373631316534393637623064666462336533616462666630616463303239613534
|
||||
31323630333031313163316532353332613433383232393766643230373864356262313239326365
|
||||
35663238663462353563633663613634313730393863343462643966316363303962306233386663
|
||||
33613063343930316137623761636331616239343236373334363162353834316664613337313134
|
||||
34366530316236383966306239363562393863623538316137336335386639333034366638646365
|
||||
62616365336562386664373361363837313736363330383638613431623161376636343135633030
|
||||
35653961326236333465373363353531636566666130616165393037326237393063623366386634
|
||||
65376230303862363465663037323034616661653266333032336463326438623636363563663634
|
||||
61363736343735303037666434363334646133666162323335353130386236653764623864306639
|
||||
64336134623864356332313862356230363838633334633238306165623564336339393233313363
|
||||
65393464616564613036613633646434323766653837646138323365316263363061336161626563
|
||||
30353231373036313865643664616632616666643532323661396335303930386432326639643830
|
||||
33613465373765363235663464623833373330336632633932383033633136373261303162613237
|
||||
61653139663531333432323166646438393365333433623333613361613065386664326163353336
|
||||
33613337356362396162333034653433643336356462373563666465616135333837353261323066
|
||||
66333761396634383635616437623336373434653239643239623532613564313264366264386539
|
||||
62366333613339636637353031373036316333616363343334373262666331366437633264326334
|
||||
34626438383864383831383230383332306164343535386436623939366431346665346666616434
|
||||
33396166376463383962386233336437653066393132613261313463663234336634646633356264
|
||||
6633
|
||||