File: openstack-tempest-ci-live-booter.postinst

package info (click to toggle)
openstack-meta-packages 0.41
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 416 kB
  • sloc: sh: 2,927; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "${1}" = "configure" ] || [ "${1}" = "reconfigure" ] ; then
	A2EN=$(which a2ensite)
	if [ -x "${A2EN}" ] ; then
		${A2EN} tempest-ci.conf
	fi
fi

#DEBHELPER#