mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
f4d74c6105
Documentation is licensed under LGPL-2.1-or-later. Scripts are MIT to facilitate reuse. Examples are relicensed to CC0-1.0 to maximise copy-and-paste for users, with permission from authors.
37 lines
1009 B
Python
37 lines
1009 B
Python
#!/usr/bin/python
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
import ast
|
|
import re
|
|
import sys
|
|
|
|
def read_os_release():
|
|
try:
|
|
filename = '/etc/os-release'
|
|
f = open(filename)
|
|
except FileNotFoundError:
|
|
filename = '/usr/lib/os-release'
|
|
f = open(filename)
|
|
|
|
for line_number, line in enumerate(f):
|
|
line = line.rstrip()
|
|
if not line or line.startswith('#'):
|
|
continue
|
|
if m := re.match(r'([A-Z][A-Z_0-9]+)=(.*)', line):
|
|
name, val = m.groups()
|
|
if val and val[0] in '"\'':
|
|
val = ast.literal_eval(val)
|
|
yield name, val
|
|
else:
|
|
print(f'{filename}:{line_number + 1}: bad line {line!r}',
|
|
file=sys.stderr)
|
|
|
|
os_release = dict(read_os_release())
|
|
|
|
pretty_name = os_release.get('PRETTY_NAME', 'Linux')
|
|
print(f'Running on {pretty_name}')
|
|
|
|
if 'debian' in [os_release.get('ID', 'linux'),
|
|
*os_release.get('ID_LIKE', '').split()]:
|
|
print('Looks like Debian!')
|