File: postinst

package info (click to toggle)
pam-tmpdir 0.05-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 124 kB
  • ctags: 36
  • sloc: ansic: 372; sh: 157; makefile: 83
file content (13 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /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

#DEBHELPER#

exit 0