File: openstack-cluster-installer-poc.postrm

package info (click to toggle)
openstack-cluster-installer 40.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,468 kB
  • sloc: php: 15,620; sh: 9,276; ruby: 37; makefile: 25
file content (13 lines) | stat: -rw-r--r-- 273 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

if [ "${1}" = "purge" ] ; then
	rm -rf /var/lib/openstack-cluster-installer-poc/runtime
	rm -rf /var/lib/openstack-cluster-installer-poc/templates
	rmdir --ignore-fail-on-non-empty /var/lib/openstack-cluster-installer-poc || true
fi

#DEBHELPER#

exit 0