File: postinst

package info (click to toggle)
pam-tmpdir 0.11
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 128 kB
  • sloc: ansic: 445; sh: 171; makefile: 28
file content (15 lines) | stat: -rw-r--r-- 284 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh -e

# Move /etc/pam_tmpdir.conf to /etc/security/tmpdir.conf, since that's
# the proper place

if [ -e "/etc/pam-tmpdir.conf" -a ! -e /etc/security/tmpdir.conf ]; then
   mv /etc/pam-tmpdir.conf /etc/security/tmpdir.conf
fi

pam-auth-update --package

#DEBHELPER#

exit 0