12 lines
183 B
Bash
12 lines
183 B
Bash
#! /bin/sh
|
|
set -e
|
|
|
|
# shellcheck disable=SC1091
|
|
. /usr/share/debconf/confmodule
|
|
db_version 2.0
|
|
|
|
db_input medium man-db/install-setuid || true
|
|
# shellcheck disable=SC2119
|
|
db_go
|
|
|
|
exit 0
|