File: postinst

package info (click to toggle)
dict-devil 1.0-13.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 860 kB
  • sloc: perl: 45; sh: 10; makefile: 6
file content (10 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#! /bin/sh

set -e

if [ "$1" = "configure" ]; then
    if [ -x "`which dictdconfig 2>/dev/null`" ]; then dictdconfig -w ;fi
    if [ -x /etc/init.d/dictd ]; then invoke-rc.d dictd restart ;fi
fi	

#DEBHELPER#