~upstart-devel/upstart/upstart-jobs

« back to all changes in this revision

Viewing changes to utopic/etc/init/procps-instance.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
 
# procps - set sysctls from /etc/sysctl.conf
2
 
#
3
 
# This task sets kernel sysctl variables from /etc/sysctl.conf and
4
 
# /etc/sysctl.d
5
 
 
6
 
description     "set sysctls from /etc/sysctl.conf"
7
 
 
8
 
instance $UPSTART_EVENTS
9
 
env UPSTART_EVENTS=
10
 
 
11
 
start on virtual-filesystems or static-network-up
12
 
 
13
 
task
14
 
script
15
 
    cat /etc/sysctl.d/*.conf /etc/sysctl.conf | sysctl -e -p -
16
 
end script