File: python3-django-horizon.preinst

package info (click to toggle)
horizon 3%3A23.0.0-5%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 31,632 kB
  • sloc: python: 92,842; javascript: 49,025; sh: 441; makefile: 75
file content (12 lines) | stat: -rw-r--r-- 325 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "${1}" = "install" ] || [ "${1}" = "upgrade" ] ; then
	if [ -L /usr/lib/python3/dist-packages/openstack_dashboard/local/enabled ]; then
		rm /usr/lib/python3/dist-packages/openstack_dashboard/local/enabled
	fi
	mkdir -p /usr/lib/python3/dist-packages/openstack_dashboard/local/enabled
fi

#DEBHELPER#