mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 16:06:42 +02:00
7 lines
167 B
Bash
7 lines
167 B
Bash
#!/bin/sh
|
|
|
|
secretfile=/var/lib/tofutf/secret
|
|
|
|
! [ -f $secretfile ] && xxd -u -l 16 -p /dev/urandom > $secretfile
|
|
chown tofutf:tofutf $secretfile
|
|
chmod 600 $secretfile
|