summaryrefslogtreecommitdiff
path: root/libpiny/debian/libpiny-perl.postinst
blob: 065289aa6e836a57da094bd32f3992b451efb777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

case "$1" in

  configure)

    if [ ! -f /etc/libpiny.key ]; then
      umask 0177
      dd if=/dev/urandom of=/etc/libpiny.key bs=512 count=1
    fi

    ;;

esac