~upstart-devel/upstart/upstart-jobs

« back to all changes in this revision

Viewing changes to vivid/etc/init/network-manager.conf

  • Committer: Dimitri John Ledkov
  • Date: 2014-11-19 12:58:41 UTC
  • Revision ID: dimitri.j.ledkov@intel.com-20141119125841-98dr37roy8dvcv3b
auto update

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# network-manager - network connection manager
 
2
#
 
3
# The Network Manager daemon manages the system's network connections,
 
4
# automatically switching between the best available.
 
5
 
 
6
description     "network connection manager"
 
7
 
 
8
start on (local-filesystems
 
9
          and started dbus
 
10
          and static-network-up)
 
11
stop on stopping dbus
 
12
 
 
13
expect fork
 
14
respawn
 
15
 
 
16
script
 
17
        # set $LANG so that messages appearing on the GUI will be translated. See LP: 875017
 
18
        if [ -r /etc/default/locale ]; then
 
19
                . /etc/default/locale
 
20
                export LANG LANGUAGE LC_MESSAGES LC_ALL
 
21
        fi
 
22
 
 
23
        exec NetworkManager
 
24
end script