File: postinst

package info (click to toggle)
pam-tmpdir 0.09
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 1,348 kB
  • ctags: 180
  • sloc: sh: 11,228; ansic: 411; 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