1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-27 13:57:26 +03:00

systemd-analyze: read /etc/os-release

This commit is contained in:
Kay Sievers 2012-02-21 21:04:05 +01:00
parent d0e5a33374
commit e444cbf040

View File

@ -164,7 +164,15 @@ elif sys.argv[1] == 'plot':
context.stroke()
context.restore()
banner = "Running on %s (%s %s) %s" % (os.uname()[1], os.uname()[2], os.uname()[3], os.uname()[4])
osrel = "Linux"
if os.path.exists("/etc/os-release"):
for line in open("/etc/os-release"):
if line.startswith('PRETTY_NAME='):
osrel = line[12:]
osrel = osrel.strip('\"\n')
break
banner = "%s %s (%s %s) %s" % (osrel, os.uname()[1], os.uname()[2], os.uname()[3], os.uname()[4])
draw_text(context, 0, -15, banner, hcenter = 0, vcenter = 1)
for x in range(0, finish_time/10000 + 100, 100):