HEX
Server: nginx/1.26.1
System: Linux main-vm 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
User: root (0)
PHP: 8.2.19
Disabled: NONE
Upload Files
File: //snap/core24/current/lib/systemd/system-generators/console-conf-generator
#!/bin/sh

set -eux

NORMAL_DIR="${1}"
EARLY_DIR="${2}"
LATE_DIR="${3}"

for tty in $(cat /sys/class/tty/console/active); do
    case "${tty}" in
      tty[0-9]*)
          # regular ttys
          mkdir -p "${NORMAL_DIR}/getty.target.wants"
          ln -sf /usr/lib/systemd/system/[email protected] \
             "${NORMAL_DIR}/getty.target.wants/console-conf@${tty}.service"
          ;;
      *)
          # assume each of these is a serial
          mkdir -p "${NORMAL_DIR}/getty.target.wants"
          ln -sf /usr/lib/systemd/system/[email protected] \
             "${NORMAL_DIR}/getty.target.wants/serial-console-conf@${tty}.service"
          ;;
    esac
done