Initial commit

This commit is contained in:
2026-07-02 15:56:21 +02:00
commit 4529a3c472
92 changed files with 13593 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# Secrets (NOT in git)
Everything in this directory except `README.md` and `run.sh` is gitignored.
Secrets are **typed in interactively** by `run.sh` — nothing is committed, kept
on external media, or baked into the ISO.
## What counts as a secret here
- share credentials — `/etc/nase.meow.credentials` (CIFS) and `/etc/davfs2/secrets`
(davfs); the fstab entries that reference them are non-secret and live in
`02-system/60-shares.sh`
- localsend keys — strip `flutter.ls_security_context` from its prefs before archiving; it regenerates
- GNOME Online Accounts (`~/.config/goa-1.0/accounts.conf`)
- later: licensed/cracked app installers & licenses (see `03-user/90-licensed-apps.sh`)
## Usage
```
sudo ./run.sh # prompts for each credential, writes the /etc files
```
+36
View File
@@ -0,0 +1,36 @@
#!/usr/bin/env bash
# Enter share credentials interactively and write them to their target files.
# Nothing secret is stored in the repo or on external media — you type it in here.
# Mount points + fstab entries are handled by 02-system/60-shares.sh, not this script.
# sudo ./run.sh
set -euo pipefail
[ "$(id -u)" -eq 0 ] || { echo "run as root (writes /etc/*)"; exit 1; }
ask() { local v; read -rp " $1: " v; printf '%s' "$v"; } # visible
asks() { local v; read -rsp " $1: " v; echo >&2; printf '%s' "$v"; } # hidden
# --- CIFS //nase.meow/data -> /etc/nase.meow.credentials ---
echo "nase.meow (CIFS) credentials:"
nm_user="$(ask username)"
nm_pass="$(asks password)"
nm_dom="$(ask 'domain (blank = none)')"
{
printf 'username=%s\npassword=%s\n' "$nm_user" "$nm_pass"
[ -n "$nm_dom" ] && printf 'domain=%s\n' "$nm_dom"
} | install -Dm600 /dev/stdin /etc/nase.meow.credentials
echo " wrote /etc/nase.meow.credentials (600)"
# --- davfs https://files.70b1.de -> /etc/davfs2/secrets ---
# Format: <resource> <username> <password>, one per line. We replace only this
# resource's line, leaving any other davfs secrets intact.
echo "files.70b1.de (davfs) credentials:"
dv_user="$(ask username)"
dv_pass="$(asks password)"
res="https://files.70b1.de"
tmp="$(mktemp)"
grep -vE "^${res//./\\.}[[:space:]]" /etc/davfs2/secrets 2>/dev/null > "$tmp" || true
printf '%s %s %s\n' "$res" "$dv_user" "$dv_pass" >> "$tmp"
install -Dm600 "$tmp" /etc/davfs2/secrets && rm -f "$tmp"
echo " wrote /etc/davfs2/secrets (600)"
echo "credentials written. Mount with 'mount -a' or reboot (mounts wait on the -ready services)."