Files
project-work/hardening-work/unlock.sh
Eric Bell f856654c6c init
Add dev-tools and dev-workflows submodules

docs: added a misc folder and file

The need to track files with unclear origin/purpose is real.
This folder holds them in the master branch.

Reference issues or pull requests here (e.g., "Closes #123")
2026-08-06 22:09:15 -04:00

10 lines
311 B
Bash

#!/bin/bash
set -euo pipefail
sudo cryptsetup open /var/lib/secure-projects/projects.luks secure_projects
sudo mount -o nodev,nosuid /dev/mapper/secure_projects /secure-projects
echo "VERIFY MOUNTED — must return a line"
mount_output="$(findmnt /secure-projects)"
echo "$mount_output"
[ -n "$mount_output" ]