diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-14 08:17:36 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-14 08:17:36 -0500 |
| commit | 659e90ad1b85eddee4b1d64afbcc0b1e4e8eef9f (patch) | |
| tree | 11e76bb9a803a584e8821616ecb6fcfb045d45a4 | |
| parent | 422d1098cd89beaeed81cc40488252233e2ca0ad (diff) | |
| download | archangel-659e90ad1b85eddee4b1d64afbcc0b1e4e8eef9f.tar.gz archangel-659e90ad1b85eddee4b1d64afbcc0b1e4e8eef9f.zip | |
refactor: drop dead variables from lib/config.sh
I dropped ENCRYPTION_ENABLED, SSH_ENABLED, and SSH_KEY — declarations with no readers anywhere in the project. The live names (NO_ENCRYPT, ENABLE_SSH) handle these settings instead. The example config files already reference those.
| -rw-r--r-- | installer/lib/config.sh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/installer/lib/config.sh b/installer/lib/config.sh index 65703d0..a241e84 100644 --- a/installer/lib/config.sh +++ b/installer/lib/config.sh @@ -25,12 +25,9 @@ SELECTED_DISKS=() RAID_LEVEL="" WIFI_SSID="" WIFI_PASSWORD="" -ENCRYPTION_ENABLED=false ZFS_PASSPHRASE="" LUKS_PASSPHRASE="" ROOT_PASSWORD="" -SSH_ENABLED=false -SSH_KEY="" ############################# # Argument Parsing |
