diff options
Diffstat (limited to 'repos/xorg/openssh')
| -rw-r--r-- | repos/xorg/openssh/.checksum | 2 | ||||
| -rw-r--r-- | repos/xorg/openssh/.files | 47 | ||||
| -rw-r--r-- | repos/xorg/openssh/abuild | 8 | ||||
| -rwxr-xr-x | repos/xorg/openssh/postinstall | 10 | ||||
| -rwxr-xr-x | repos/xorg/openssh/sshd.run | 5 |
5 files changed, 0 insertions, 72 deletions
diff --git a/repos/xorg/openssh/.checksum b/repos/xorg/openssh/.checksum deleted file mode 100644 index 473a69bb..00000000 --- a/repos/xorg/openssh/.checksum +++ /dev/null @@ -1,2 +0,0 @@ -4cb4d97b991b5593df23d723d455d89e86608df39454d6a734bbf06478130984 openssh-9.9p1.tar.gz -4012d0f90ad02ef57f7688b61d249061b7065e0b0fe7fcb7dd2d519cc9541a3c sshd.run diff --git a/repos/xorg/openssh/.files b/repos/xorg/openssh/.files deleted file mode 100644 index 70968087..00000000 --- a/repos/xorg/openssh/.files +++ /dev/null @@ -1,47 +0,0 @@ -drwxr-xr-x root/root etc/ --rw-r--r-- root/root etc/moduli.new --rw-r--r-- root/root etc/ssh_config.new --rw-r--r-- root/root etc/sshd_config.new -drwxr-xr-x root/root etc/sv/ -drwxr-xr-x root/root etc/sv/sshd/ --rwxr-xr-x root/root etc/sv/sshd/run.new -lrwxrwxrwx root/root etc/sv/sshd/supervise -> ../../../run/runit/supervise.sshd -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/scp --rwxr-xr-x root/root usr/bin/sftp --rwxr-xr-x root/root usr/bin/ssh --rwxr-xr-x root/root usr/bin/ssh-add --rwxr-xr-x root/root usr/bin/ssh-agent --rwxr-xr-x root/root usr/bin/ssh-keygen --rwxr-xr-x root/root usr/bin/ssh-keyscan -drwxr-xr-x root/root usr/libexec/ --rwxr-xr-x root/root usr/libexec/sftp-server --rws--x--x root/root usr/libexec/ssh-keysign --rwxr-xr-x root/root usr/libexec/ssh-pkcs11-helper --rwxr-xr-x root/root usr/libexec/ssh-sk-helper --rwxr-xr-x root/root usr/libexec/sshd-session -drwxr-xr-x root/root usr/sbin/ --rwxr-xr-x root/root usr/sbin/sshd -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/scp.1.gz --rw-r--r-- root/root usr/share/man/man1/sftp.1.gz --rw-r--r-- root/root usr/share/man/man1/ssh-add.1.gz --rw-r--r-- root/root usr/share/man/man1/ssh-agent.1.gz --rw-r--r-- root/root usr/share/man/man1/ssh-keygen.1.gz --rw-r--r-- root/root usr/share/man/man1/ssh-keyscan.1.gz --rw-r--r-- root/root usr/share/man/man1/ssh.1.gz -drwxr-xr-x root/root usr/share/man/man5/ --rw-r--r-- root/root usr/share/man/man5/moduli.5.gz --rw-r--r-- root/root usr/share/man/man5/ssh_config.5.gz --rw-r--r-- root/root usr/share/man/man5/sshd_config.5.gz -drwxr-xr-x root/root usr/share/man/man8/ --rw-r--r-- root/root usr/share/man/man8/sftp-server.8.gz --rw-r--r-- root/root usr/share/man/man8/ssh-keysign.8.gz --rw-r--r-- root/root usr/share/man/man8/ssh-pkcs11-helper.8.gz --rw-r--r-- root/root usr/share/man/man8/ssh-sk-helper.8.gz --rw-r--r-- root/root usr/share/man/man8/sshd.8.gz -drwxr-xr-x root/root var/ -drwxr-xr-x root/root var/empty/ diff --git a/repos/xorg/openssh/abuild b/repos/xorg/openssh/abuild deleted file mode 100644 index 46314c92..00000000 --- a/repos/xorg/openssh/abuild +++ /dev/null @@ -1,8 +0,0 @@ -name=openssh -version=9.9p1 -release=1 -source="https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/$name-$version.tar.gz - sshd.run" -sv="sshd.run" -build_opt="--without-zlib-version-check --with-privsep-user=nobody --with-privsep-path=/var/empty" -export CFLAGS="$CFLAGS -Wno-error=incompatible-pointer-types" diff --git a/repos/xorg/openssh/postinstall b/repos/xorg/openssh/postinstall deleted file mode 100755 index 981ce237..00000000 --- a/repos/xorg/openssh/postinstall +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -getent group sshd >/dev/null || groupadd -g 50 sshd -getent passwd messagebus >/dev/null || \ - useradd -c 'sshd PrivSep' \ - -d /var/lib/sshd \ - -g sshd \ - -s /bin/false \ - -u 50 sshd - diff --git a/repos/xorg/openssh/sshd.run b/repos/xorg/openssh/sshd.run deleted file mode 100755 index 8079fc4b..00000000 --- a/repos/xorg/openssh/sshd.run +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -exec 2>&1 -ssh-keygen -A >/dev/null 2>&1 # Will generate host keys if they don't already exist -[ -r conf ] && . ./conf -exec sshd -D $OPTS |