File: openstack-tempest-ci.postrm

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-- 191 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "purge" ] ; then
	rm -f /etc/openstack-tempest-ci/openstack-ci.list
	rmdir --ignore-fail-on-non-empty /etc/openstack-tempest-ci || true
fi

#DEBHELPER#

exit 0