sync: update from workspace (latest ITSM/CICD/DR changes)
This commit is contained in:
parent
f00388b066
commit
a3ec9d30df
@ -67,7 +67,7 @@ class WebhookHandler(http.server.BaseHTTPRequestHandler):
|
|||||||
def do_POST(self):
|
def do_POST(self):
|
||||||
try:
|
try:
|
||||||
length = int(self.headers.get("Content-Length", 0))
|
length = int(self.headers.get("Content-Length", 0))
|
||||||
body = self.read(length) if length else b""
|
body = self.rfile.read(length) if length else b""
|
||||||
sig = self.headers.get("X-Gitea-Signature", "")
|
sig = self.headers.get("X-Gitea-Signature", "")
|
||||||
if sig:
|
if sig:
|
||||||
expected = hmac.new(SECRET, body, hashlib.sha256).hexdigest()
|
expected = hmac.new(SECRET, body, hashlib.sha256).hexdigest()
|
||||||
@ -129,7 +129,7 @@ class WebhookHandler(http.server.BaseHTTPRequestHandler):
|
|||||||
("rsync", ["bash", "-c",
|
("rsync", ["bash", "-c",
|
||||||
f"rsync -a --exclude=__pycache__ --exclude=.git "
|
f"rsync -a --exclude=__pycache__ --exclude=.git "
|
||||||
f"--exclude=rpa_rules.json --exclude='*.pyc' "
|
f"--exclude=rpa_rules.json --exclude='*.pyc' "
|
||||||
f". /opt/guardia/app/"]),
|
f"{SRC}/ /opt/guardia/app/"]),
|
||||||
("pip install", ["bash", "-c",
|
("pip install", ["bash", "-c",
|
||||||
"/opt/guardia/venv/bin/pip install -r /opt/guardia/app/requirements.txt -q"]),
|
"/opt/guardia/venv/bin/pip install -r /opt/guardia/app/requirements.txt -q"]),
|
||||||
("restart", ["systemctl", "restart", "guardia"]),
|
("restart", ["systemctl", "restart", "guardia"]),
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user