1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#!/bin/sh set -e case "$1" in configure) if [ ! -f /etc/libpiny.key ]; then umask 0137 dd if=/dev/urandom of=/etc/libpiny.key bs=512 count=1 chgrp www-data /etc/libpiny.key fi chmod g+r /etc/libpiny.key # Updating an old umask ;; esac