]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-deploy.git/commitdiff
moved everything to a module
authorAlfredo Deza <alfredo@deza.pe>
Thu, 18 Jul 2013 18:20:52 +0000 (14:20 -0400)
committerAlfredo Deza <alfredo@deza.pe>
Thu, 18 Jul 2013 18:20:52 +0000 (14:20 -0400)
ceph_deploy/util/paths/__init__.py [new file with mode: 0644]
ceph_deploy/util/paths/mon.py [new file with mode: 0644]

diff --git a/ceph_deploy/util/paths/__init__.py b/ceph_deploy/util/paths/__init__.py
new file mode 100644 (file)
index 0000000..129ef45
--- /dev/null
@@ -0,0 +1 @@
+import mon
diff --git a/ceph_deploy/util/paths/mon.py b/ceph_deploy/util/paths/mon.py
new file mode 100644 (file)
index 0000000..f29d5be
--- /dev/null
@@ -0,0 +1,55 @@
+"""
+Common paths for mon, based on the constant file paths defined in
+``ceph_deploy.util.constants``.
+All classmethods return a string representation of the absolute path
+construction.
+"""
+from os.path import join
+
+from ceph_deploy.util import constants
+
+
+def base(cluster):
+    cluster = "%s-" % cluster
+    return join(constants.mon_path, cluster)
+
+
+def path(cluster, hostname):
+    """
+    Example usage::
+
+        >>> mon.path('mycluster', 'hostname')
+        /var/lib/ceph/mon/mycluster-myhostname
+    """
+    return "%s%s" % (base(cluster), hostname)
+
+
+def done(cluster, hostname):
+    """
+    Example usage::
+
+        >>> mon.done('mycluster', 'hostname')
+        /var/lib/ceph/mon/mycluster-myhostname/done
+    """
+    return join(path(cluster, hostname), 'done')
+
+
+def init(cluster, hostname, init):
+    """
+    Example usage::
+
+        >>> mon.init('mycluster', 'hostname', 'init')
+        /var/lib/ceph/mon/mycluster-myhostname/init
+    """
+    return join(path(cluster, hostname), init)
+
+
+def keyring(cluster, hostname):
+    """
+    Example usage::
+
+        >>> mon.keyring('mycluster', 'myhostname')
+        /var/lib/ceph/tmp/mycluster-myhostname.mon.keyring
+    """
+    keyring_file = '%s-%s.mon.keyring' % (cluster, hostname)
+    return join(constants.tmp_path, keyring_file)