File: postinst

package info (click to toggle)
stow 2.3.1-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 2,040 kB
  • sloc: perl: 3,541; sh: 707; makefile: 165
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#