-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Debian Testing to the tests (#356)
- Loading branch information
Showing
4 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
# | ||
# lsb_release command for testing the ld module. | ||
# Only the -a option is supported. | ||
# | ||
# This version of the lsb_release command works without a corresponding | ||
# etc/lsb-release file. | ||
# | ||
|
||
if [[ "$@" != "-a" ]]; then | ||
echo "Usage: lsb_release -a" | ||
exit 2 | ||
fi | ||
|
||
cat <<OUT | ||
No LSB modules are available. | ||
Distributor ID: Debian | ||
Description: Debian GNU/Linux bookworm/sid | ||
Release: n/a | ||
Codename: bookworm | ||
OUT | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bookworm/sid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
PRETTY_NAME="Debian GNU/Linux bookworm/sid" | ||
NAME="Debian GNU/Linux" | ||
VERSION_CODENAME=bookworm | ||
ID=debian | ||
HOME_URL="https://www.debian.org/" | ||
SUPPORT_URL="https://www.debian.org/support" | ||
BUG_REPORT_URL="https://bugs.debian.org/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters