[PR #567] [MERGED] Drop Debian 10, add preliminary support for Debian 13 #578

Closed
opened 2026-05-07 00:21:36 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/ovh/the-bastion/pull/567
Author: @speed47
Created: 8/8/2025
Status: Merged
Merged: 8/11/2025
Merged by: @speed47

Base: masterHead: debian


📝 Commits (10+)

  • c56d8d4 chg: drop Debian 10, preliminary support for Debian 13
  • f9cb853 fix: workaround a deluser bug in Debian 13
  • 86686bf fix: supported key algorithms detection for OpenSSH >= 10
  • 2c0027a fix: remove tests for DSA keys, compiled out of recent OpenSSH versions
  • 0810ab1 fix: tests: better detect faulty modules syntax
  • 0baec1f fix: tests: remove support for MD5 fingerprints
  • f67c562 chore: tests: bump FreeBSD from 14.2 to 14.3
  • 8d1d6c8 chore: remove references to NetBSD/OpenBSD in the code
  • 4a2fa43 fix: recent versions of sshd have a separate sshd-session $0
  • 6278a96 fix: tests: freebsd: proper reload of recent sshd

📊 Changes

24 files changed (+189 additions, -282 deletions)

View changed files

📝 .github/workflows/freebsd.yml (+1 -1)
📝 .github/workflows/tests.yml (+1 -1)
📝 README.md (+3 -3)
📝 bin/admin/install (+1 -3)
📝 bin/admin/install-mkhash-helper.sh (+0 -9)
📝 bin/admin/install-yubico-piv-checker.sh (+0 -9)
📝 bin/shell/connect.pl (+17 -7)
📝 doc/CHANGELOG.md (+1 -1)
📝 doc/release-notes/v3.19.00.md (+1 -1)
📝 doc/sphinx/installation/basic.rst (+3 -3)
📝 doc/sphinx/installation/docker.rst (+2 -2)
📝 docker/Dockerfile.debian13 (+2 -2)
etc/pam.d/sshd.debian13 (+91 -0)
📝 etc/ssh/ssh_config.debian13 (+3 -2)
📝 etc/ssh/sshd_config.debian13 (+3 -2)
📝 lib/perl/OVH/Bastion.pm (+1 -1)
📝 lib/perl/OVH/Bastion/allowdeny.inc (+1 -4)
📝 lib/perl/OVH/Bastion/os.inc (+11 -100)
📝 lib/perl/OVH/Bastion/ssh.inc (+12 -15)
📝 lib/shell/functions.inc (+6 -36)

...and 4 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ovh/the-bastion/pull/567 **Author:** [@speed47](https://github.com/speed47) **Created:** 8/8/2025 **Status:** ✅ Merged **Merged:** 8/11/2025 **Merged by:** [@speed47](https://github.com/speed47) **Base:** `master` ← **Head:** `debian` --- ### 📝 Commits (10+) - [`c56d8d4`](https://github.com/ovh/the-bastion/commit/c56d8d4105c58492c3103c29078003e239ae83b6) chg: drop Debian 10, preliminary support for Debian 13 - [`f9cb853`](https://github.com/ovh/the-bastion/commit/f9cb8537fb9e5ac53b506709951fe541b40e623c) fix: workaround a deluser bug in Debian 13 - [`86686bf`](https://github.com/ovh/the-bastion/commit/86686bfd7d00cf78d0b747b127f8ad1a12f0558a) fix: supported key algorithms detection for OpenSSH >= 10 - [`2c0027a`](https://github.com/ovh/the-bastion/commit/2c0027a53ec5385681d59ff11091f8f47f53a708) fix: remove tests for DSA keys, compiled out of recent OpenSSH versions - [`0810ab1`](https://github.com/ovh/the-bastion/commit/0810ab188a7bc1cb4e162ea138d47f64687dc596) fix: tests: better detect faulty modules syntax - [`0baec1f`](https://github.com/ovh/the-bastion/commit/0baec1f2cb6a608601e903fb3c6a1aaafe53cba8) fix: tests: remove support for MD5 fingerprints - [`f67c562`](https://github.com/ovh/the-bastion/commit/f67c56246715b8800d211d51f1e5fcd187c1d42a) chore: tests: bump FreeBSD from 14.2 to 14.3 - [`8d1d6c8`](https://github.com/ovh/the-bastion/commit/8d1d6c8882201f5cae92ffbe6de1d47c4e2f35d9) chore: remove references to NetBSD/OpenBSD in the code - [`4a2fa43`](https://github.com/ovh/the-bastion/commit/4a2fa43bed3549da4b5a5156ed92174ff2dd208a) fix: recent versions of sshd have a separate sshd-session $0 - [`6278a96`](https://github.com/ovh/the-bastion/commit/6278a96b12a331648fc0f72ed5228f43214b5505) fix: tests: freebsd: proper reload of recent sshd ### 📊 Changes **24 files changed** (+189 additions, -282 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/freebsd.yml` (+1 -1) 📝 `.github/workflows/tests.yml` (+1 -1) 📝 `README.md` (+3 -3) 📝 `bin/admin/install` (+1 -3) 📝 `bin/admin/install-mkhash-helper.sh` (+0 -9) 📝 `bin/admin/install-yubico-piv-checker.sh` (+0 -9) 📝 `bin/shell/connect.pl` (+17 -7) 📝 `doc/CHANGELOG.md` (+1 -1) 📝 `doc/release-notes/v3.19.00.md` (+1 -1) 📝 `doc/sphinx/installation/basic.rst` (+3 -3) 📝 `doc/sphinx/installation/docker.rst` (+2 -2) 📝 `docker/Dockerfile.debian13` (+2 -2) ➕ `etc/pam.d/sshd.debian13` (+91 -0) 📝 `etc/ssh/ssh_config.debian13` (+3 -2) 📝 `etc/ssh/sshd_config.debian13` (+3 -2) 📝 `lib/perl/OVH/Bastion.pm` (+1 -1) 📝 `lib/perl/OVH/Bastion/allowdeny.inc` (+1 -4) 📝 `lib/perl/OVH/Bastion/os.inc` (+11 -100) 📝 `lib/perl/OVH/Bastion/ssh.inc` (+12 -15) 📝 `lib/shell/functions.inc` (+6 -36) _...and 4 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-07 00:21:36 +02:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/the-bastion#578
No description provided.