⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.133
Server IP:
185.119.109.197
Server:
Linux managedhosting.chostar.me 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
var
/
lib
/
dpkg
/
info
/
View File Name :
postgrey.postinst
#! /bin/sh # postinst script for postgrey set -e # lintian: postinst-does-not-load-confmodule . /usr/share/debconf/confmodule case "$1" in configure) DBDIR='/var/lib/postgrey' getent passwd postgrey > /dev/null || \ adduser --system --home "$DBDIR" --no-create-home \ --disabled-password --group postgrey # migration from old 'nogroup' postgrey (1.23-1 and earlier): getent group postgrey > /dev/null || \ addgroup --system postgrey install -d -o postgrey -g postgrey -m 0700 "$DBDIR" ucf --debconf-ok --three-way \ /usr/share/postgrey/whitelist_clients \ /etc/postgrey/whitelist_clients ucf --debconf-ok --debconf-ok --three-way \ /usr/share/postgrey/whitelist_recipients \ /etc/postgrey/whitelist_recipients ucf --debconf-ok --three-way \ /usr/share/postgrey/postgrey-default \ /etc/default/postgrey ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # Automatically added by dh_installinit/13.3ubuntu4 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then if [ -x "/etc/init.d/postgrey" ]; then update-rc.d postgrey defaults >/dev/null if [ -n "$2" ]; then _dh_action=restart else _dh_action=start fi invoke-rc.d postgrey $_dh_action || exit 1 fi fi # End automatically added section # without this, debconf hangs after end of postinst. db_stop exit 0