File: rush.postinst

package info (click to toggle)
rush 2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,276 kB
  • sloc: ansic: 46,428; sh: 18,253; yacc: 881; lex: 760; makefile: 284; awk: 87; lisp: 56; sed: 24
file content (13 lines) | stat: -rw-r--r-- 198 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

EXECUTABLE=/usr/sbin/rush
LIBDIR=/var/lib/rush

if [ "$1" = "configure" ]; then
  # Accounting needs to be done, initiate these.
  touch $LIBDIR/utmp $LIBDIR/wtmp
fi

#DEBHELPER#