Merge lp:~ubuntu-branches/ubuntu/oneiric/sysvinit/oneiric-201107132118 into lp:ubuntu/oneiric/sysvinit

Proposed by James Westby
Status: Merged
Merged at revision: 155
Proposed branch: lp:~ubuntu-branches/ubuntu/oneiric/sysvinit/oneiric-201107132118
Merge into: lp:ubuntu/oneiric/sysvinit
Diff against target: 49 lines (+40/-0) (has conflicts)
1 file modified
debian/src/initscripts/etc/init.d/ondemand (+40/-0)
Conflict adding file debian/src/initscripts/etc/init.d/ondemand.  Moved existing file to debian/src/initscripts/etc/init.d/ondemand.moved.
To merge this branch: bzr merge lp:~ubuntu-branches/ubuntu/oneiric/sysvinit/oneiric-201107132118
Reviewer Review Type Date Requested Status
Ubuntu Development Team Pending
Review via email: mp+67902@code.launchpad.net

Description of the change

The package importer has detected a possible inconsistency between the package history in the archve and the history in bzr. As the archive is authoritative the importer has made lp:ubuntu/oneiric/sysvinit reflect what is in the archive and the old bzr branch has been pushed to lp:~ubuntu-branches/ubuntu/oneiric/sysvinit/oneiric-201107132118. This merge proposal was created so that an Ubuntu developer can review the situations and perform a merge/upload if necessary. There are three typical cases where this can happen.
  1. Where someone pushes a change to bzr and someone else uploads the package without that change. This is the reason that this check is done by the importer. If this appears to be the case then a merge/upload should be done if the changes that were in bzr are still desirable.
  2. The importer incorrectly detected the above situation when someone made a change in bzr and then uploaded it.
  3. The importer incorrectly detected the above situation when someone just uploaded a package and didn't touch bzr.

If this case doesn't appear to be the first situation then set the status of the merge proposal to "Rejected" and help avoid the problem in future by filing a bug at https://bugs.launchpad.net/udd linking to this merge proposal.

(this is an automatically generated message)

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added directory '.bzr-builddeb'
=== added file 'debian/src/initscripts/etc/init.d/ondemand'
--- debian/src/initscripts/etc/init.d/ondemand 1970-01-01 00:00:00 +0000
+++ debian/src/initscripts/etc/init.d/ondemand 2011-07-13 21:22:48 +0000
@@ -0,0 +1,40 @@
1#! /bin/sh
2### BEGIN INIT INFO
3# Provides: ondemand
4# Required-Start: $remote_fs $all
5# Required-Stop:
6# Default-Start: 2 3 4 5
7# Default-Stop:
8# Short-Description: Set the CPU Frequency Scaling governor to "ondemand"
9### END INIT INFO
10
11
12PATH=/sbin:/usr/sbin:/bin:/usr/bin
13
14. /lib/init/vars.sh
15. /lib/lsb/init-functions
16
17case "$1" in
18 start)
19 start-stop-daemon --start --background --exec /etc/init.d/ondemand -- background
20 ;;
21 background)
22 sleep 60 # probably enough time for desktop login
23
24 for CPUFREQ in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
25 do
26 [ -f $CPUFREQ ] || continue
27 echo -n ondemand > $CPUFREQ
28 done
29 ;;
30 restart|reload|force-reload)
31 echo "Error: argument '$1' not supported" >&2
32 exit 3
33 ;;
34 stop)
35 ;;
36 *)
37 echo "Usage: $0 start|stop" >&2
38 exit 3
39 ;;
40esac
041
=== renamed file 'debian/src/initscripts/etc/init.d/ondemand' => 'debian/src/initscripts/etc/init.d/ondemand.moved'
=== added directory 'debian/src/initscripts/etc/network'
=== added directory 'debian/src/initscripts/etc/network/if-up.d'

Subscribers

People subscribed via source and target branches

to all changes: