summaryrefslogtreecommitdiff
path: root/roles/radicle_node/files/rad-config-pin
blob: 0e40f0037d7d1c59363d8ba60507aa65722b88ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/python3

import json, os, subprocess, sys

rid = sys.argv[1]

p = subprocess.run(["rad", "config", "show"], check=True, capture_output=True)
if p.returncode != 0:
    sys.exit("rad config show failed")
config = json.loads(p.stdout.decode())

config["web"]["pinned"]["repositories"].append(rid)

p = subprocess.run(["rad", "self", "--home"], check=True, capture_output=True)
if p.returncode != 0:
    sys.exit("rad self --home failed")

home = p.stdout.decode().strip()
filename = os.path.join(home, "config.json")
if os.path.exists(filename):
    os.rename(filename, filename + ".bak")
with open(filename, "w") as f:
    f.write(json.dumps(config, indent=4))