diff options
-rw-r--r-- | manifests/subsystems/sysctl.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/subsystems/sysctl.pp b/manifests/subsystems/sysctl.pp index f9cbb99..3e2e198 100644 --- a/manifests/subsystems/sysctl.pp +++ b/manifests/subsystems/sysctl.pp @@ -13,6 +13,14 @@ class sysctl { subscribe => File["/etc/sysctl.d/mmap_min_addr.conf"], refreshonly => true, } + + file { "/etc/sysctl.d/kernel.printk.conf": + owner => "root", + group => "root", + mode => 0644, + ensure => present, + content => "kernel.printk = 3 4 1 3\n", + } } class sysctl::laptop { |