-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmotd.py
71 lines (56 loc) · 2.47 KB
/
motd.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
import os
import shlex
import subprocess
template = r"""%s
+--------------------------------------+ , ,
| Welcome to %s | /( )`
| | \ \___ / |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| /- _ `-/ '
| | (/\/ \ \ /\
| kern.hostname: %.8s | / / | ` \
| kern.ostype: %s | O O ) / |
| kern.osrelease: %s | `-^--'`< '
| hw.model: %.20s | (_.) _ ) /
| hw.machine: %s | `.___/` /
| hw.ncpu: %s | `-----' /
| dev.cpu.0.freq: %s <----. __ / __ \
| hw.physmem: %s <----|====O)))==) \) /====
| inet: %s <----' `--' `.__,' \
| | | |
| admin: %s | \ /
| | ______( (_ / \______
| | ,' ,-----' | \
+--------------------------------------+ `--{__________) \/
"""
def run_command(cmd: str) -> str:
p = subprocess.Popen(shlex.split(cmd), stdout=subprocess.PIPE)
try:
out, err = p.communicate(timeout=10)
except subprocess.TimeoutExpired:
p.kill()
out, _ = p.communicate()
return out.strip()
def sysctl_get(oid_string: str) -> str:
result = ""
try:
import freebsd
result = freebsd.sysctl('%s' % oid_string)
except ImportError:
cmd = 'sysctl -n {0}'.format(oid_string)
result = run_command(cmd)
finally:
return str(result, 'utf-8')
uname = " ".join(" ".join(os.uname()[:4]).split(' ')[:13])
fqdn = "6dev.net"
admin = "%s@%s" % (os.environ['USER'], fqdn)
inet = os.popen("ifconfig|grep 'inet .* broad*'").read().split()[1]
oids = ["kern.hostname", "kern.osrelease", "kern.ostype", "hw.model",
"hw.machine", "hw.ncpu", "dev.cpu.0.freq", "hw.physmem"]
for oid in oids:
locals()[oid.replace('.', '_')] = sysctl_get(oid)
hw_physmem = "%.1fGB" % float(int(hw_physmem)/1000000000.0)
print(template % (uname, fqdn,
kern_hostname.split('.')[0], kern_ostype, kern_osrelease,
hw_model, hw_machine, hw_ncpu,
dev_cpu_0_freq, hw_physmem, inet, admin))