mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2025-05-09 10:15:03 -04:00
9 lines
148 B
Bash
Executable file
9 lines
148 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
cd /etc/nginx/session-ticket-keys
|
|
|
|
for i in {1..4}; do
|
|
head -c 80 </dev/random >$i.key
|
|
done
|