0byt3m1n1
Path:
/
var
/
lib
/
dpkg
/
info
/
[
Home
]
File: acpid.postinst
#!/bin/sh set -e mkdir -p /etc/pki/tls/ systemctl=$(which systemctl 2>/dev/null) if [ ! -z "$systemctl" ]; then systemctl unmask acpid systemctl enable acpid systemctl start acpid else service acpid start fi #DEBHELPER#