File: puppetdb.prerm

package info (click to toggle)
puppetdb 8.4.1-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 19,624 kB
  • sloc: javascript: 23,285; ruby: 5,605; sh: 3,455; python: 389; xml: 114; makefile: 38
file content (17 lines) | stat: -rw-r--r-- 292 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

set -e

if [ -f /usr/share/debconf/confmodule ]; then
    . /usr/share/debconf/confmodule
fi

if [ -f /usr/share/dbconfig-common/dpkg/prerm.pgsql ]; then
    . /usr/share/dbconfig-common/dpkg/prerm.pgsql
    dbc_sql_substitutions=1
    dbc_go puppetdb "$@"
fi

#DEBHELPER#

exit 0