- # Install sshd dirs
- inst_dir \
- /etc/pam.d \
- /etc/profile.d \
- /etc/security \
- /etc/ssh \
- /etc/sysconfig \
- $systemdsystemunitdir/basic.target.wants \
- $systemdsystemunitdir/emergency.target.wants \
- $systemdsystemunitdir/rescue.target.wants \
- $systemdsystemunitdir/sysinit.target.wants \
- /usr/lib64/security \
- /usr/share/terminfo/x \
- /var/empty
-
- # Install sshd files
- inst_multiple \
- /etc/bashrc \
- /etc/environment \
- /etc/gshadow \
- /etc/pam.d/sshd \
- /etc/pam.d/system-auth \
- /etc/profile.d/*.sh \
- /etc/security/limits.conf \
- /etc/security/pam_env.conf \
- /etc/shadow \
- /etc/ssh/denyusers \
- /etc/ssh/moduli \
- /etc/ssh/ssh_config \
- /etc/ssh/sshd_config \
- /etc/ssh/ssh_host_* \
- /root/.bash_profile \
- /root/.bashrc \
- /usr/bin/cat \
- /usr/bin/id \
- '/usr/bin/kill' \
- /usr/bin/ps \
- /usr/lib64/security/pam_cracklib.so \
- /usr/lib64/security/pam_deny.so \
- /usr/lib64/security/pam_env.so \
- /usr/lib64/security/pam_keyinit.so \
- /usr/lib64/security/pam_limits.so \
- /usr/lib64/security/pam_listfile.so \
- /usr/lib64/security/pam_nologin.so \
- /usr/lib64/security/pam_succeed_if.so \
- /usr/lib64/security/pam_systemd.so \
- /usr/lib64/security/pam_tcb.so \
- /usr/sbin/sshd \
- /usr/share/terminfo/x/*
-
- # Disable pam
- #perl -pne 's%^UsePAM yes$%UsePAM no%;s%^PermitRootLogin .*$%PermitRootLogin yes%' -i "$initdir/etc/ssh/sshd_config"
- perl -pne 's%^PermitRootLogin .*$%PermitRootLogin yes%' -i "$initdir/etc/ssh/sshd_config"
-
- # Sshd shell service
- #XXX: KillMode=none is required to avoid sshd process getting killed in control group after parent fork
- cat << EOF > $initdir$systemdsystemunitdir/debug-sshd.service
-# Based on /usr/lib/systemd/system/debug-shell.service
-[Unit]
-Description=Early sshd shell FOR DEBUGGING ONLY
-DefaultDependencies=no
-AllowIsolate=no
-IgnoreOnIsolate=yes
-
-[Service]
-Type=simple
-KillMode=none
-ExecStart=@/usr/sbin/sshd /usr/sbin/sshd -e
-
-[Install]
-WantedBy=sysinit.target
-EOF
-
- # Install in sysinit.target.wants
- ln -fs ../debug-sshd.service $initdir$systemdsystemunitdir/sysinit.target.wants/
-
- # Install sshd user and group
- `grep -Eq '^sshd:' $initdir/etc/passwd` || grep -E '^sshd:' /etc/passwd >> "$initdir/etc/passwd"
- `grep -Eq '^sshd:' $initdir/etc/group` || grep -E '^sshd:' /etc/group >> "$initdir/etc/group"
-
- # Install ihttpd.path
- ln -fs ../ihttpd.path $initdir$systemdsystemunitdir/sysinit.target.wants/
-
- # Install resolv.conf as resolved service
- #TODO: change this to have a content or depend on systemd-resolved
- if [ -L /etc/resolv.conf ]; then
-
- # Install systemd-resolved
- if [ `readlink /etc/resolv.conf` = '/run/systemd/resolve/resolv.conf' ]; then
-
- # Install resolv.conf as symlink
- ln -fs '/run/systemd/resolve/resolv.conf' $initdir/etc/resolv.conf
-
- # Install systemd-resolved
- inst_multiple \
- $systemdsystemunitdir/systemd-resolved.service \
- $systemdutildir/systemd-resolved \
- /etc/systemd/resolved.conf
-
- # Require systemd-resolve user and group for our ihttpd process
- `egrep -q '^systemd-resolve:' $initdir/etc/group` || egrep '^systemd-resolve:' /etc/group >> "$initdir/etc/group"
- `egrep -q '^systemd-resolve:' $initdir/etc/passwd` || egrep '^systemd-resolve:' /etc/passwd >> "$initdir/etc/passwd"
-
- # Install in ihttpd.service.wants
- ln -fs ../systemd-resolved.service $initdir$systemdsystemunitdir/ihttpd.service.wants/
-
- # Cleanup resolved.conf
- perl -pne 'undef $_ if /^(?:#.*|Domains=|FallbackDNS=|DNS=(?:127.0.0.1|::1)$|$)/;/^DNS=/ && $_ =~ s/(?:127.0.0.1|::1)[ \t]*//g' \
- -i "$initdir/etc/systemd/resolved.conf"
-
- # Cleanup systemd-resolved.service
- perl -pne 'undef $_ if /^(?:#|(?:Wants|After)=org\.freedesktop\.resolve1\.busname)/' \
- -i "$initdir$systemdsystemunitdir/systemd-resolved.service"
-
- # Try install the target file
- else
- inst_simple /etc/resolv.conf
- fi
-
- # Install resolv.conf as file
- elif [ -e /etc/resolv.conf ]; then
-
- # Install resolv.conf as file
- inst_simple /etc/resolv.conf
-
- # Cleanup resolv.conf
- #XXX: strip search, localhost and ipv6
- perl -pne 'undef $_ if /^(?:#.*|search\s+|nameserver\s+127.0.0.1|nameserver\s+[^:\s]+:[^\s]+|$)/' \
- -i "$initdir/etc/resolv.conf"
-
- # Touch resolv.conf file
- else
- # We did what we could
- touch "$initdir/etc/resolv.conf"
- fi
-
- # Install ihttpd log
- ln -fs ../../../run/ihttpd/log/{http,https,child.{askpassword,ihttpd},error}.log $initdir/var/www/html/
-
- # Install in ihttpd.service.wants
- ln -fs ../systemd-networkd.service $initdir$systemdsystemunitdir/ihttpd.service.wants/
- ln -fs ../systemd-tmpfiles-setup.service $initdir$systemdsystemunitdir/ihttpd.service.wants/