Codebase list insserv / 04ef49c
Import Debian changes 1.08.0-14 insserv (1.08.0-14) unstable; urgency=low * Correct the dependencies for hwclock.sh. * Update libdevmapper*, raid2 and mdadm-raid by adding module-init-tools as an alternative to modutils, and move both from required-start to should-start, as either or both might be available. (Closes: #432072) Petter Reinholdtsen authored 16 years ago Dmitry Bogatov committed 5 years ago
13 changed file(s) with 44 addition(s) and 23 deletion(s). Raw diff Collapse all Expand all
0 insserv (1.08.0-14) unstable; urgency=low
1
2 * Correct the dependencies for hwclock.sh.
3 * Update libdevmapper*, raid2 and mdadm-raid by adding
4 module-init-tools as an alternative to modutils, and move
5 both from required-start to should-start, as either or both
6 might be available. (Closes: #432072)
7
8 -- Petter Reinholdtsen <pere@debian.org> Mon, 9 Jul 2007 13:40:36 +0200
9
010 insserv (1.08.0-13) unstable; urgency=low
111
212 * Add override files for sysfsutils and hplip.
44 # Default-Start: 2 3 4 5
55 # Default-Stop: 0 1 6
66 ### END INIT INFO
7 # Bug reported #432020
00 ### BEGIN INIT INFO
11 # Provides: hwclock
2 # Required-Start: $local_fs $remote_fs
3 # Required-Stop: $local_fs $remote_fs
2 # Required-Start: mountdevsubfs
3 # Required-Stop: $local_fs
44 # Default-Start: S
55 # Default-Stop: 0 6
66 ### END INIT INFO
00 ### BEGIN INIT INFO
11 # Provides: libdevmapper
2 # Required-Start: modutils
3 # Required-Stop: modutils
4 # Should-Start: hotplug discover udev devfsd
2 # Required-Start:
3 # Required-Stop:
4 # Should-Start: modutils module-init-tools hotplug discover udev devfsd
5 # Should-Stop: modutils module-init-tools
56 # Default-Start: S
67 # Default-Stop:
78 ### END INIT INFO
00 ### BEGIN INIT INFO
11 # Provides: libdevmapper
2 # Required-Start: modutils
3 # Required-Stop: modutils
4 # Should-Start: hotplug discover udev devfsd
2 # Required-Start:
3 # Required-Stop:
4 # Should-Start: modutils module-init-tools hotplug discover udev devfsd
5 # Should-Stop: modutils module-init-tools
56 # Default-Start: S
67 # Default-Stop:
78 ### END INIT INFO
00 ### BEGIN INIT INFO
11 # Provides: libdevmapper
2 # Required-Start: modutils
3 # Required-Stop: modutils
4 # Should-Start: hotplug discover udev devfsd
2 # Required-Start:
3 # Required-Stop:
4 # Should-Start: modutils module-init-tools hotplug discover udev devfsd
5 # Should-Stop: modutils module-init-tools
56 # Default-Start: S
67 # Default-Stop:
78 ### END INIT INFO
00 ### BEGIN INIT INFO
11 # Provides: libdevmapper
2 # Required-Start: modutils
3 # Required-Stop: modutils
4 # Should-Start: hotplug discover udev devfsd
2 # Required-Start:
3 # Required-Stop:
4 # Should-Start: modutils module-init-tools hotplug discover udev devfsd
5 # Should-Stop: modutils module-init-tools
56 # Default-Start: S
67 # Default-Stop:
78 ### END INIT INFO
00 ### BEGIN INIT INFO
11 # Provides: mdadm-raid
2 # Required-Start: modutils
3 # Required-Stop: modutils
4 # Should-Start: hotplug discover udev devfsd
2 # Required-Start:
3 # Required-Stop:
4 # Should-Start: modutils module-init-tools hotplug discover udev devfsd
5 # Should-Stop: modutils module-init-tools
56 # Default-Start: S
67 # Default-Stop: 0 6
78 ### END INIT INFO
00 ### BEGIN INIT INFO
11 # Provides: raid2
2 # Required-Start: modutils
3 # Required-Stop: modutils
4 # Should-Start: devfsd udev
2 # Required-Start:
3 # Required-Stop:
4 # Should-Start: modutils module-init-tools devfsd udev
5 # Should-Stop: modutils module-init-tools
56 # Default-Start: S 1 2 3 4 5
67 # Default-Stop: 0 6
78 ### END INIT INFO
44 # Default-Start: 2 3 4 5
55 # Default-Stop: 0 1 6
66 ### END INIT INFO
7 # Bug reported #432020
1212 problem with lack of 'const' on the map_runlevel_to_location()
1313 function. This patch fixes these problems.
1414
15 It was sent upstream 2006-04-01.
15 It was sent upstream 2006-04-01 and found to be fixed in version
16 1.09.0.
1617
1718 @DPATCH@
1819 --- insserv-1.08.0.orig/insserv.c
00 #! /bin/sh /usr/share/dpatch/dpatch-run
11 ## 36_memleak.dpatch by Petter Reinholdtsen <pere@hungry.com>
22
3 Fix minor memleak. Patch sent upstream 2006-04-01.
3 Fix minor memleak. Patch sent upstream 2006-04-01. Seem to be fixed
4 in version 1.09.0.
45
56 --- insserv-1.08.0.orig/insserv.c
67 +++ insserv-1.08.0/insserv.c
1111 Without this patch, they will use '/etc/init.d' and /etc/init.d/'
1212 respectively, and this produces strange paths in the log output.
1313
14 It was sent upstream 2006-09-07.
14 It was sent upstream 2006-09-07. The issue seem to be fixed slightly
15 different in version 1.09.0.
1516
1617 @DPATCH@
1718 --- insserv-1.08.0.orig/insserv.c