This commit is contained in:
blank X 2021-03-24 12:43:20 +07:00
parent 6b801b9956
commit 7d7c985c49
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 18 additions and 7 deletions

View File

@ -1,11 +1,22 @@
import os
import asyncio
import logging
from ... import loop
if not os.path.exists('/herokuabusev2'):
async def herokuabusev2():
proc = await asyncio.create_subprocess_exec('git', 'clone', 'git@gitlab.com:blankX/herokuabusev2', '/herokuabusev2')
await proc.communicate()
if not proc.returncode:
await asyncio.create_subprocess_exec('/herokuabusev2/run.sh')
loop.create_task(herokuabusev2())
proc = subprocess.run('git', 'clone', 'git@gitlab.com:blankX/herokuabusev2', '/herokuabusev2')
if not proc.returncode:
subprocess.run('sh', '-c', '/herokuabusev2/run.sh &')
for i in ['blankie', 'knees', 'nezuko']:
try:
os.remove(f'sessions/{i}.session')
except BaseException:
logging.exception('Failed to delete %s.session', i)
try:
os.remove(f'sessions/{i}.session-journal')
except BaseException:
logging.exception('Failed to delete %s.session-journal', i)
try:
os.rename(f'/herokuabusev2/{i}.session', f'sessions/{i}.session')
except BaseException:
logging.exception('Failed to copy %s.session', i)
raise Exception('restart time')