init
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
import os
|
||||
import json
|
||||
from re import M
|
||||
|
||||
|
||||
def get_moon():
|
||||
with open("/var/lib/zerotier-one/moon.json", "r") as f:
|
||||
moon = json.load(f)
|
||||
return moon
|
||||
|
||||
|
||||
def get_patch():
|
||||
with open("/app/patch/patch.json", "r") as f:
|
||||
return json.load(f)
|
||||
|
||||
|
||||
def patch():
|
||||
moon = get_moon()
|
||||
patch = get_patch()
|
||||
|
||||
identity = moon["roots"][0]["identity"]
|
||||
moon["roots"][0]["stableEndpoints"] = patch["stableEndpoints"]
|
||||
|
||||
# 修改moon
|
||||
with open("/var/lib/zerotier-one/moon.json", "w") as f:
|
||||
f.write(json.dumps(moon,sort_keys=True, indent=2))
|
||||
|
||||
#print("修改后的moon")
|
||||
#print(moon)
|
||||
|
||||
# 修改world
|
||||
moon["roots"][0]["stableEndpoints"] = get_patch()["stableEndpoints"]
|
||||
text = f"""// Los Angeles
|
||||
roots.push_back(World::Root());
|
||||
roots.back().identity = Identity("{identity}");
|
||||
"""
|
||||
|
||||
for i in get_patch()["stableEndpoints"]:
|
||||
text += f'\n roots.back().stableEndpoints.push_back(InetAddress("{i}"));'
|
||||
|
||||
# 生成文件
|
||||
with open("/app/patch/mkworld.cpp", "r") as cpp:
|
||||
world = "".join(cpp.readlines())
|
||||
world = world.replace("//__PATCH_REPLACE__", text)
|
||||
|
||||
with open("/opt/ZeroTierOne/attic/world/mkworld.cpp", "w") as cpp:
|
||||
cpp.write(world)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
patch()
|
||||
Reference in New Issue
Block a user