12 lines
124 B
Python
12 lines
124 B
Python
|
#!/usr/bin/env python3
|
||
|
import sys
|
||
|
from pynet import *
|
||
|
|
||
|
a = Node()
|
||
|
|
||
|
start()
|
||
|
|
||
|
a.dbg(a.succeed("gluon-reconfigure"))
|
||
|
|
||
|
finish()
|