File: open-infrastructure-system-config.postinst

package info (click to toggle)
open-infrastructure-system-tools 20190202-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,684 kB
  • sloc: sh: 14,279; makefile: 441
file content (22 lines) | stat: -rwxr-xr-x 244 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

set -e

case "${1}" in
	configure)
		mkdir -p /etc/live/config.conf.d
		;;

	abort-upgrade|abort-remove|abort-deconfigure)

		;;

	*)
		echo "postinst called with unknown argument \`${1}'" >&2
		exit 1
		;;
esac

#DEBHELPER#

exit 0