mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2025-07-20 13:39:01 -04:00
11 lines
165 B
Bash
Executable file
11 lines
165 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
cd /etc/session-ticket-keys
|
|
|
|
for i in {1..4}; do
|
|
head -c 80 </dev/random >$i.key
|
|
done
|
|
|
|
cat {1..4}.key > keys
|