-
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.
- Loading branch information
1 parent
ad4177b
commit 6c6ff7f
Showing
5 changed files
with
70 additions
and
7 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
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,21 @@ | ||
#!/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 | ||
|
||
echo "No LSB modules are available." | ||
echo "Distributor ID: Debian" | ||
echo "Description: Debian GNU/Linux 10 (buster)" | ||
echo "Release: 10" | ||
echo "Codename: buster" | ||
|
||
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 @@ | ||
10.11 |
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,9 @@ | ||
PRETTY_NAME="Debian GNU/Linux 10 (buster)" | ||
NAME="Debian GNU/Linux" | ||
VERSION_ID="10" | ||
VERSION="10 (buster)" | ||
VERSION_CODENAME=buster | ||
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