13 lines
389 B
BlitzBasic

SUMMARY = "hidepid - hide other users' processes from /proc"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
SRC_URI = "file://hidepid.sh"
DEPENDS = "update-rc.d-native"
do_install() {
install -D -m 0755 ${WORKDIR}/hidepid.sh ${D}${sysconfdir}/init.d/hidepid.sh
update-rc.d -r ${D} hidepid.sh start 10 S .
}