From 59052b3a04eb4745e5977ea974c5c3cf17536ce5 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Tue, 18 Jul 2017 15:03:20 -0400 Subject: [PATCH] ceph-volume: create the executables Signed-off-by: Alfredo Deza --- src/ceph-volume/bin/ceph-volume | 6 ++++++ src/ceph-volume/bin/ceph-volume-systemd | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100755 src/ceph-volume/bin/ceph-volume create mode 100755 src/ceph-volume/bin/ceph-volume-systemd diff --git a/src/ceph-volume/bin/ceph-volume b/src/ceph-volume/bin/ceph-volume new file mode 100755 index 0000000000000..5905cfccc01b3 --- /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 0000000000000..7da8ec6b1cc1d --- /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() -- 2.39.5