base-files: enable PID in core files and protected hard/soft links via sysctl.conf(5).
This commit is contained in:
parent
2fc752c48a
commit
32423dcebf
|
@ -0,0 +1,6 @@
|
|||
# Append the PID to the core filename
|
||||
kernel.core_uses_pid = 1
|
||||
|
||||
# Enable hard and soft link protection
|
||||
fs.protected_hardlinks=1
|
||||
fs.protected_symlinks=1
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'base-files'
|
||||
pkgname=base-files
|
||||
version=0.108
|
||||
version=0.109
|
||||
revision=1
|
||||
bootstrap=yes
|
||||
build_style="meta"
|
||||
|
@ -49,8 +49,11 @@ do_install() {
|
|||
install -m644 ${FILESDIR}/*.sh ${DESTDIR}/etc/profile.d
|
||||
install -m644 ${FILESDIR}/DIR_COLORS* ${DESTDIR}/etc
|
||||
|
||||
# modprobe(8) files
|
||||
vinstall ${FILESDIR}/usb-load-ehci-first 644 usr/lib/modprobe.d usb-load-ehci-first.conf
|
||||
vinstall ${FILESDIR}/blacklist.conf 644 usr/lib/modprobe.d
|
||||
# sysctl(8) files
|
||||
vinstall ${FILESDIR}/sysctl.conf 644 usr/lib/sysctl.d void.conf
|
||||
|
||||
# Install common licenses, from Debian.
|
||||
vmkdir usr/share/licenses
|
||||
|
|
Loading…
Reference in New Issue