From 530d2d27806c15743019056f89d0854a93762854 Mon Sep 17 00:00:00 2001 From: Blaise Thompson Date: Thu, 17 Jun 2021 20:41:39 -0500 Subject: initial commit --- README.md | 1 + mirror.py | 20 ++++++++++++++++++++ mirrors.toml | 5 +++++ 3 files changed, 26 insertions(+) create mode 100644 README.md create mode 100644 mirror.py create mode 100644 mirrors.toml diff --git a/README.md b/README.md new file mode 100644 index 0000000..0609a22 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# git mirror worker diff --git a/mirror.py b/mirror.py new file mode 100644 index 0000000..0ffff6c --- /dev/null +++ b/mirror.py @@ -0,0 +1,20 @@ +import toml +import pathlib +import os + +__here__ = pathlib.Path(__file__).parent + +with open(__here__ / "mirrors.toml", "r") as f: + repositories = toml.load(f) + +for path in repositories.keys(): + pathlib.mkdir(path, exist_ok=True) + local_path = pathlib.Path(path) + primary_url = repositories[path]["primary"] + secondary_urls = repositories[path]["secondary"] + if os.path.isfile(local_path / "git-daemon-export-ok"): + subprocess.run(["git", "remote", "update", primary_url]) + else: + # TODO: clone repository + pass + diff --git a/mirrors.toml b/mirrors.toml new file mode 100644 index 0000000..71f8c5d --- /dev/null +++ b/mirrors.toml @@ -0,0 +1,5 @@ +["uw-madison-chem-shops/wisconsin-photoreactor.git"] +primary = "https://github.com/uw-madison-chem-shops/wisconsin-photoreactor.git" +secondary = ["git@git.chem.wisc.edu:gellman-group/wisconsin-photoreactor.git", + "git@gitlab.com:uw-madison-chem-shops/wisconsin-photoreactor.git"] + -- cgit v1.2.3