#!/bin/sh set -e # If the user has removed the config file, respect this sign of dementia # -- only create on package install. if [ -z "$2" ]; then if ! [ -f "$DPKG_ROOT"/etc/security/opasswd ]; then umask 066 touch "$DPKG_ROOT"/etc/security/opasswd umask 022 fi fi if [ -z "$2" ] && [ ! -f "$DPKG_ROOT"/etc/environment ]; then touch "$DPKG_ROOT"/etc/environment fi #DEBHELPER#