Adam Litke has uploaded a new change for review. Change subject: sdm: Create the storage/sdm directory ......................................................................
sdm: Create the storage/sdm directory New SDM code including the verbs and supporting utility functions need an organized place in the storage code. Add the 'sdm' directory now to prepare for the future patches. Change-Id: I5a85c77e09e8d36c6dffe30b1739c74ebfd510e6 Signed-off-by: Adam Litke <[email protected]> --- M configure.ac M vdsm/storage/Makefile.am A vdsm/storage/sdm/Makefile.am A vdsm/storage/sdm/__init__.py 4 files changed, 44 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/86/49686/1 diff --git a/configure.ac b/configure.ac index c4a8fc4..3f27922 100644 --- a/configure.ac +++ b/configure.ac @@ -366,6 +366,7 @@ vdsm/storage/Makefile vdsm/storage/imageRepository/Makefile vdsm/storage/protect/Makefile + vdsm/storage/sdm/Makefile vdsm/storage/vdsm_lvm_rules.template vdsm/virt/Makefile vdsm/virt/vmdevices/Makefile diff --git a/vdsm/storage/Makefile.am b/vdsm/storage/Makefile.am index 4ebe0a2..e183e80 100644 --- a/vdsm/storage/Makefile.am +++ b/vdsm/storage/Makefile.am @@ -18,7 +18,7 @@ # Refer to the README and COPYING files for full details of the license # -SUBDIRS = protect imageRepository +SUBDIRS = protect imageRepository sdm include $(top_srcdir)/build-aux/Makefile.subs diff --git a/vdsm/storage/sdm/Makefile.am b/vdsm/storage/sdm/Makefile.am new file mode 100644 index 0000000..7b40769 --- /dev/null +++ b/vdsm/storage/sdm/Makefile.am @@ -0,0 +1,23 @@ +# +# Copyright 2015 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# +# Refer to the README and COPYING files for full details of the license +# + +include $(top_srcdir)/build-aux/Makefile.subs + +vdsmsdmdir = $(vdsmdir)/storage/sdm diff --git a/vdsm/storage/sdm/__init__.py b/vdsm/storage/sdm/__init__.py new file mode 100644 index 0000000..b2efedc --- /dev/null +++ b/vdsm/storage/sdm/__init__.py @@ -0,0 +1,19 @@ +# +# Copyright 2015 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# +# Refer to the README and COPYING files for full details of the license +# -- To view, visit https://gerrit.ovirt.org/49686 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I5a85c77e09e8d36c6dffe30b1739c74ebfd510e6 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Adam Litke <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
