File: lsb_release

package info (click to toggle)
python-distro 1.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 852 kB
  • sloc: python: 2,563; sh: 160; makefile: 66
file content (21 lines) | stat: -rwxr-xr-x 440 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 8.2 (jessie)"
echo "Release:	8.2"
echo "Codename:	jessie"

exit 0