File: postinst

package info (click to toggle)
pdsh 2.35-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,008 kB
  • sloc: ansic: 12,433; sh: 6,838; makefile: 400; perl: 163
file content (16 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e

. /usr/share/debconf/confmodule

# Get setuid root answer
db_get pdsh/setuidroot

if [ "$RET" = "true" ]; then
   chmod 4755 /usr/bin/pdsh.bin
else
   chmod 0755 /usr/bin/pdsh.bin
fi

#DEBHELPER#

exit 0;