コード例 #1
0
def process(args):
    fs = abdt_fs.make_default_accessor()

    with fs.lockfile_context():
        pid = fs.get_pid_or_none()
        if pid is None or not phlsys_pid.is_running(pid):
            raise Exception("Arcyd is not running")

        if args.force:
            phlsys_pid.request_terminate(pid)
        else:
            killfile = 'var/command/killfile'
            phlsys_fs.write_text_file(killfile, '')

            if os.path.isfile(killfile):
                time.sleep(1)
                while os.path.isfile(killfile):
                    print 'waiting for arcyd to remove killfile ..'
                    time.sleep(1)

        # wait for Arcyd to not be running
        if phlsys_pid.is_running(pid):
            time.sleep(1)
            while phlsys_pid.is_running(pid):
                print 'waiting for arcyd to exit'
                time.sleep(1)
コード例 #2
0
 def close(self):
     pid = self._process.pid
     phlsys_pid.request_terminate(pid)
     self._process.wait()
コード例 #3
0
ファイル: phlsys_web.py プロジェクト: aevri/phabricator-tools
 def close(self):
     pid = self._process.pid
     phlsys_pid.request_terminate(pid)
     self._process.wait()