From: Alfredo Deza Date: Tue, 18 Jul 2017 19:03:20 +0000 (-0400) Subject: ceph-volume: create the executables X-Git-Tag: ses5-milestone10~3^2~5^2~113 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=59052b3a04eb4745e5977ea974c5c3cf17536ce5;p=ceph.git ceph-volume: create the executables Signed-off-by: Alfredo Deza --- diff --git a/src/ceph-volume/bin/ceph-volume b/src/ceph-volume/bin/ceph-volume new file mode 100755 index 000000000000..5905cfccc01b --- /dev/null +++ b/src/ceph-volume/bin/ceph-volume @@ -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 index 000000000000..7da8ec6b1cc1 --- /dev/null +++ b/src/ceph-volume/bin/ceph-volume-systemd @@ -0,0 +1,6 @@ +#!/usr/bin/env python + +from ceph_volume.systemd import main + +if __name__ == '__main__': + main.main()