Changeset 4076
- Timestamp:
- Mar 30, 2017, 9:18:42 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
n4d-epoptes-client/trunk/fuentes/install-files/usr/share/n4d/python-plugins/EpoptesClient.py
r602 r4076 1 1 import subprocess 2 2 import os 3 3 4 4 class EpoptesClient: … … 9 9 if options["boot"]: 10 10 11 if os.system("host server")==0: 12 os.system("epoptes-client -c") 11 if os.system("host server > /dev/null")==0: 12 p=subprocess.Popen(["epoptes-client -c"],shell=True,stdout=subprocess.PIPE,stderr=subprocess.PIPE) 13 p.communicate() 13 14 14 15
Note: See TracChangeset
for help on using the changeset viewer.