diff options
author | Ned Ludd <solar@gentoo.org> | 2003-10-27 23:23:04 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2003-10-27 23:23:04 +0000 |
commit | 46cbc91d560755873df32a376efafe22dc2e1074 (patch) | |
tree | da4cfe15d6bf0ce93b2f1526f14ac76bc8dbbfb3 /sys-apps/chpax/files | |
parent | init.d/conf.d name changes - touchups, per request of PaX Team (diff) | |
download | historical-46cbc91d560755873df32a376efafe22dc2e1074.tar.gz historical-46cbc91d560755873df32a376efafe22dc2e1074.tar.bz2 historical-46cbc91d560755873df32a376efafe22dc2e1074.zip |
init.d/conf.d name changes - touchups, per request of PaX Team
Diffstat (limited to 'sys-apps/chpax/files')
-rw-r--r-- | sys-apps/chpax/files/pax-conf.d | 4 | ||||
-rw-r--r-- | sys-apps/chpax/files/pax-init.d | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys-apps/chpax/files/pax-conf.d b/sys-apps/chpax/files/pax-conf.d index 78ac17e8597b..8e471830b8c2 100644 --- a/sys-apps/chpax/files/pax-conf.d +++ b/sys-apps/chpax/files/pax-conf.d @@ -13,6 +13,6 @@ PAGEEXEC_EXEMPT="/usr/X11R6/bin/XFree86 /usr/lib/wine/bin/wine" TRAMPOLINE_EXEMPT="" MPROTECT_EXEMPT="" -MMAP_EXEMPT="" -SEGEXEC_EXEMPT="" +RANDMMAP_EXEMPT="" +SEGMEXEC_EXEMPT="" RANDEXEC_EXEMPT="" diff --git a/sys-apps/chpax/files/pax-init.d b/sys-apps/chpax/files/pax-init.d index bb2d3bc60e0e..eb00ec251048 100644 --- a/sys-apps/chpax/files/pax-init.d +++ b/sys-apps/chpax/files/pax-init.d @@ -23,7 +23,7 @@ start() { [ -f ${x} ] && /sbin/chpax -e ${x} || eerror ${err_msg} ${x} done - for x in ${MMAP_EXEMPT} ; do + for x in ${RANDMMAP_EXEMPT} ; do [ -f ${x} ] && /sbin/chpax -r ${x} || eerror ${err_msg} ${x} done @@ -31,7 +31,7 @@ start() { [ -f ${x} ] && /sbin/chpax -m ${x} || eerror ${err_msg} ${x} done - for x in ${SEGEXEC_EXEMPT} ; do + for x in ${SEGMEXEC_EXEMPT} ; do [ -f ${x} ] && /sbin/chpax -s ${x} || eerror ${err_msg} ${x} done |