mirror of
https://github.com/systemd/systemd.git
synced 2024-10-29 21:55:36 +03:00
13 lines
345 B
Python
13 lines
345 B
Python
|
#!/usr/bin/python
|
||
|
# SPDX-License-Identifier: CC0-1.0
|
||
|
|
||
|
import platform
|
||
|
os_release = platform.freedesktop_os_release()
|
||
|
|
||
|
pretty_name = os_release.get('PRETTY_NAME', 'Linux')
|
||
|
print(f'Running on {pretty_name!r}')
|
||
|
|
||
|
if 'fedora' in [os_release.get('ID', 'linux'),
|
||
|
*os_release.get('ID_LIKE', '').split()]:
|
||
|
print('Looks like Fedora!')
|