]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph-volume: create the executables
authorAlfredo Deza <adeza@redhat.com>
Tue, 18 Jul 2017 19:03:20 +0000 (15:03 -0400)
committerAlfredo Deza <adeza@redhat.com>
Fri, 4 Aug 2017 14:25:57 +0000 (10:25 -0400)
Signed-off-by: Alfredo Deza <adeza@redhat.com>
src/ceph-volume/bin/ceph-volume [new file with mode: 0755]
src/ceph-volume/bin/ceph-volume-systemd [new file with mode: 0755]

diff --git a/src/ceph-volume/bin/ceph-volume b/src/ceph-volume/bin/ceph-volume
new file mode 100755 (executable)
index 0000000..5905cfc
--- /dev/null
@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+
+from ceph_volume import main
+
+if __name__ == '__main__':
+    main.Volume()
diff --git a/src/ceph-volume/bin/ceph-volume-systemd b/src/ceph-volume/bin/ceph-volume-systemd
new file mode 100755 (executable)
index 0000000..7da8ec6
--- /dev/null
@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+
+from ceph_volume.systemd import main
+
+if __name__ == '__main__':
+    main.main()