Merge lp:~sergiusens/session-manager/override_mountall into lp:session-manager

Proposed by Sergio Schvezov
Status: Merged
Approved by: Ricardo Salveti
Approved revision: 58
Merged at revision: 58
Proposed branch: lp:~sergiusens/session-manager/override_mountall
Merge into: lp:session-manager
Diff against target: 69 lines (+57/-0)
2 files modified
debian/changelog (+6/-0)
mountall.override (+51/-0)
To merge this branch: bzr merge lp:~sergiusens/session-manager/override_mountall
Reviewer Review Type Date Requested Status
Ricardo Salveti (community) Approve
PS Jenkins bot continuous-integration Approve
Review via email: mp+167610@code.launchpad.net

Commit message

adding override for mountall

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Ricardo Salveti (rsalveti) wrote :

Good.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2013-06-04 13:17:27 +0000
3+++ debian/changelog 2013-06-05 18:03:25 +0000
4@@ -1,3 +1,9 @@
5+ubuntu-session (0.50) saucy; urgency=low
6+
7+ * Adding override for mountall.
8+
9+ -- Sergio Schvezov <sergio.schvezov@canonical.com> Wed, 05 Jun 2013 14:54:05 -0300
10+
11 ubuntu-session (0.49) saucy; urgency=low
12
13 * Rename qml-phone-shell to unity8.
14
15=== added file 'mountall.override'
16--- mountall.override 1970-01-01 00:00:00 +0000
17+++ mountall.override 2013-06-05 18:03:25 +0000
18@@ -0,0 +1,51 @@
19+# mountall - Mount filesystems on boot
20+#
21+# This helper mounts filesystems in the correct order as the devices
22+# and mountpoints become available.
23+
24+description "Generate mountall filesystem ready events."
25+
26+start on startup
27+stop on starting rcS
28+
29+task
30+
31+emits virtual-filesystems
32+emits local-filesystems
33+emits remote-filesystems
34+emits all-swaps
35+emits filesystem
36+emits mounting
37+emits mounted
38+emits static-network-up
39+
40+# temporary, until we have progress indication
41+# and output capture (next week :p)
42+console output
43+
44+script
45+ initctl emit -n virtual-filesystems || true
46+ initctl emit -n local-filesystems || true
47+ initctl emit -n remote-filesystems || true
48+ initctl emit -n all-swaps || true
49+
50+# Default desktop jobs don't listen for this...
51+#
52+# /sbin/initctl emits mounting
53+#
54+# This will require multiple emits with keys
55+#
56+# eg. /sbin/initctl emit mounted MOUNTPOINT=/proc TYPE=proc
57+#
58+# /sbin/initctl emits mounted
59+ initctl emit -n filesystem || true
60+ initctl emit -n mounted MOUNTPOINT=/run TYPE=tmpfs || true
61+ initctl emit -n mounted MOUNTPOINT=/proc TYPE=proc || true
62+ initctl emit -n mounted MOUNTPOINT=/dev TYPE=devtmpfs || true
63+
64+ initctl emit -n static-network-up
65+end script
66+
67+post-stop script
68+ rm -f /forcefsck 2>dev/null || true
69+end script

Subscribers

People subscribed via source and target branches