commit e33dfeac3881f07b862a80acaeb5509865350598 Author: David Thurstenson Date: Wed Feb 3 10:56:39 2021 -0600 Initial Commit diff --git a/99-tl-dmesg-unrestrict.conf b/99-tl-dmesg-unrestrict.conf new file mode 100644 index 0000000..bbf2472 --- /dev/null +++ b/99-tl-dmesg-unrestrict.conf @@ -0,0 +1 @@ +kernel.dmesg_restrict = 0 diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..11458e2 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,16 @@ +# Maintainer: David Thurstenson +pkgname=tl-dmesg-unrestrict +pkgver=0.1 +pkgrel=1 +pkgdesc="Set kernel.dmesg_unrestrict=0" +arch=('any') +url="https://git.thurstylark.com/tl-dmesg-unrestrict.git/" +license=('GPL') +groups=('tlconfig') +source=("99-tl-dmesg-unrestrict.conf") +md5sums=('6fdd26992c003616c724e05e6e5719fe') + +package() { + install -Dm644 99-tl-dmesg-unrestrict.conf \ + ${pkgdir}/usr/lib/sysctl.d/99-tl-dmesg-unrestrict.conf +}