Reduce pollution to console during deployment

Prevents kernel messages about network connections
and filesystem mounting from polluting the console
during deployment.

Change-Id: Ic2b78f2792559317ce9b8196e0376ddefa74f3fc
Closes-Bug: #1318510
This commit is contained in:
Matthew Mosesohn 2014-06-24 18:39:30 +04:00
parent d204858549
commit da6d7bf0c3

View File

@ -56,13 +56,15 @@ $gem_source = "http://localhost/gems/",
owner => 'root',
group => 'root',
mode => '0755',
}
}
file { "/etc/resolv.conf":
content => template("nailgun/resolv.conf.erb"),
owner => 'root',
group => 'root',
mode => '0644',
}
}
#Suppress kernel messages to console
sysctl::value{'kernel.printk': value=>'4 1 1 7'}
}