File: postinst-nginx

package info (click to toggle)
nginx 1.28.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 9,472 kB
  • sloc: ansic: 169,389; sh: 613; perl: 439; python: 240; makefile: 126; cpp: 19
file content (26 lines) | stat: -rw-r--r-- 634 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
for confpair in #NAMES# ; do
	from=$(echo $confpair | cut -d: -f1)
	to=$(echo $confpair | cut -d: -f2)

	if [ -L /etc/nginx/modules-enabled/$to.removed ]; then
		rm /etc/nginx/modules-enabled/$to.removed
		removed_link=true
	else
		removed_link=false
	fi

	# Symlink on
	# 1) Fresh installations
	# 2) Reinstalls after automatic removes (preserve admin actions)
	if [ -z "$2" -o "$removed_link" = "true" ]; then
		ln -sf /usr/share/nginx/modules-available/$from \
			/etc/nginx/modules-enabled/$to
	fi
done

if [ "$1" = "configure" ] ; then
	if which dpkg-trigger >/dev/null 2>&1 ; then
		dpkg-trigger --no-await nginx-reload
	fi

fi