File: zookeeper.prerm

package info (click to toggle)
zookeeper 3.9.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 26,268 kB
  • sloc: java: 124,153; cpp: 14,071; ansic: 12,500; javascript: 11,754; xml: 4,962; python: 2,829; sh: 2,434; makefile: 244; perl: 114
file content (11 lines) | stat: -rw-r--r-- 186 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

NAME="zookeeper"

if [ "$1" = "remove" ]; then
  update-alternatives --list $NAME-conf >>/dev/null 2>&1 && update-alternatives --remove-all $NAME-conf
fi

#DEBHELPER#