7 lines
115 B
Python
7 lines
115 B
Python
import socket
|
|
|
|
hostname = socket.gethostname().split('.', 1)[0]
|
|
|
|
config = {
|
|
"name": "koschei.%s" % hostname,
|
|
}
|