summaryrefslogtreecommitdiff
path: root/lorrycontroller/local.py
diff options
context:
space:
mode:
Diffstat (limited to 'lorrycontroller/local.py')
-rw-r--r--lorrycontroller/local.py28
1 files changed, 25 insertions, 3 deletions
diff --git a/lorrycontroller/local.py b/lorrycontroller/local.py
index 101bc98..15a4048 100644
--- a/lorrycontroller/local.py
+++ b/lorrycontroller/local.py
@@ -13,14 +13,36 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+import logging
+import os
+
+import cliapp
+
from . import hosts
class LocalDownstream(hosts.DownstreamHost):
+ @staticmethod
+ def add_app_settings(app_settings):
+ app_settings.string(
+ ['local-base-directory'],
+ 'Base directory for local Downstream Host')
+
+ @staticmethod
+ def check_app_settings(app_settings):
+ if not app_settings['local-base-directory']:
+ logging.error('A base directory must be provided to create '
+ 'repositories on a local filesystem.')
+ app_settings.require('local-base-directory')
+
def __init__(self, app_settings):
- pass
+ self._base_dir = app_settings['local-base-directory']
def prepare_repo(self, repo_path, metadata):
- # Lorry can create the repository directly
+ repo_path = '%s/%s.git' % (self._base_dir, repo_path)
+
+ # These are idempotent, so we don't need to explicitly check
+ # whether the repository already exists
+ os.makedirs(repo_path, exist_ok=True)
+ cliapp.runcmd(['git', 'init', '--bare', repo_path])
# TODO: set metadata
- pass