diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-11-16 20:43:49 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-11-16 20:43:49 +0000 |
| commit | 0582b0f8cd26678e741a06ba2ab42cc47a7c689a (patch) | |
| tree | 028dcc99591775e87682c0ff8259fea3a21aa538 /src/tesserae/openssh.nim | |
| parent | moved core LFS tessera to core/ (diff) | |
moved non LFS tessera to extra/
Diffstat (limited to 'src/tesserae/openssh.nim')
| -rw-r--r-- | src/tesserae/openssh.nim | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/tesserae/openssh.nim b/src/tesserae/openssh.nim deleted file mode 100644 index 26c58dd..0000000 --- a/src/tesserae/openssh.nim +++ /dev/null @@ -1,38 +0,0 @@ -import .. / lapis - -tessera "openssh": - source: "https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-10.0p1.tar.gz" - patches: @[""] - dependencies: @[""] - build: @[ - "install -v -g sys -m700 -d /var/lib/sshd", - "groupadd -g 50 sshd", - """ - useradd -c 'sshd PrivSep' \ - -d /var/lib/sshd \ - -g sshd \ - -s /bin/false \ - -u 50 sshd - """, - """ - ./configure --prefix=/usr \ - --sysconfdir=/etc/ssh \ - --with-privsep-path=/var/lib/sshd \ - --with-default-path=/usr/bin \ - --with-superuser-path=/usr/sbin:/usr/bin \ - --with-pid-dir=/run - """, - "make", - "make install", - "install -v -m755 contrib/ssh-copy-id /usr/bin", - """ - install -v -m644 contrib/ssh-copy-id.1 \ - /usr/share/man/man1 - """, - "install -v -m755 -d /usr/share/doc/openssh-10.0p1", - """ - install -v -m644 INSTALL LICENCE OVERVIEW README* \ - /usr/share/doc/openssh-10.0p1 - """ - ] - result: "ssh" |
