Files
schedule/scripts/genkey.sh

5 lines
116 B
Bash
Raw Normal View History

2020-05-12 08:45:19 +02:00
#!/bin/bash
if [ ! -f /var/www/html/schedule/.key ]; then
2020-05-13 14:03:46 +02:00
openssl rand -hex 32 > /var/www/html/schedule/.key
2020-05-12 08:45:19 +02:00
fi