コード例 #1
0
ファイル: publish.py プロジェクト: perezg/infoxchange
def _deletePrevious(publishDir, objects, excluded):
  for obj in objects:
    if(not obj in excluded):
      publishlib.myExec("sudo rm -rf %s" % os.path.join(publishDir, obj))
コード例 #2
0
ファイル: publish.py プロジェクト: perezg/infoxchange
def restartApache(server):
  print("Restarting apache")
  if(server == "ubuntu"):
    publishlib.myExec('sudo /opt/apache/restart', True)
  else:
    publishlib.myExec('sudo /sbin/service httpd restart', True)