summaryrefslogtreecommitdiff
path: root/tools/action.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/action.py')
-rw-r--r--tools/action.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/tools/action.py b/tools/action.py
deleted file mode 100644
index a2d0ba0..0000000
--- a/tools/action.py
+++ /dev/null
@@ -1,30 +0,0 @@
-# The basic workflow is like this:
-# git rsync
-# [remote git] <-> [local git] <-> [local storage]
-#
-# If action PULL is specified:
-# 1. git pull from remote repo
-# 2. rsync local repo to local storage
-#
-# If action PUSH is specified:
-# 1. rsync from local storage to local repo
-# 2. git push to remote repo
-
-# Pull config files from git repo
-
-import git
-
-def repo_pull():
- pass
-
-# Push config files to git repo
-def repo_push():
- pass
-
-# Pull config files from local storage to be pushed to repo
-def local_pull():
- pass
-
-# Push config pulled from repo to local storage
-def local_push():
- pass