File: preinst

package info (click to toggle)
lomoco 1.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 364 kB
  • sloc: ansic: 691; xml: 295; sh: 120; makefile: 38; awk: 22
file content (21 lines) | stat: -rw-r--r-- 531 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

set -e

if [ "$1" = install ] || [ "$1" = upgrade ]; then
	if [ -L "/etc/udev/rules.d/025_lomoco.rules" ]; then
		rm -f "/etc/udev/rules.d/025_lomoco.rules"
	fi

	if [ -e "/etc/udev/lomoco.rules" ]; then
		if [ "`md5sum \"/etc/udev/lomoco.rules\" | sed -e \"s/ .*//\"`" = \
		     "`dpkg-query -W -f='${Conffiles}' lomoco | sed -n -e \"\\\\' /etc/udev/lomoco.rules's/.* //p\"`" ]
		then
			rm -f "/etc/udev/lomoco.rules"
		else
			mv "/etc/udev/lomoco.rules" "/etc/udev/rules.d/40-lomoco.rules"
		fi
	fi
fi

#DEBHELPER#