mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03: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
|