File: postinst

package info (click to toggle)
stow 2.4.1-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,304 kB
  • sloc: perl: 4,355; sh: 710; makefile: 184
file content (10 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e
if [ ! -e /usr/local/stow ]; then
  if mkdir /usr/local/stow 2>/dev/null; then
    if chown root:staff /usr/local/stow; then
      chmod 2775 /usr/local/stow || true
    fi
  fi
fi
#DEBHELPER#