File: postinst

package info (click to toggle)
pdsh 2.31-3
  • links: PTS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, stretch
  • size: 3,460 kB
  • ctags: 1,923
  • sloc: ansic: 19,433; sh: 11,011; makefile: 509; 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;