HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux wordpress 6.8.0-88-generic #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025 x86_64
User: www-data (33)
PHP: 8.3.28
Disabled: NONE
Upload Files
File: /var/lib/dpkg/info/dhcpcd-base.postinst
#!/bin/sh
set -e
if [ "$1" = configure ]; then
  # Create system user for privilege separation.
  if ! getent passwd dhcpcd >/dev/null; then
    adduser --system \
    --gecos "DHCP Client Daemon" \
    --home /usr/lib/dhcpcd --no-create-home \
    --shell /bin/false \
    dhcpcd
  fi
fi