[PATCH 0/3] Add Kimchi and Ginger as submodules

From: Paulo Vital <pvital@linux.vnet.ibm.com> This patch-set configures Kimchi and Ginger as submodules repositories of Wok under src/wok/plugins directory. In addition, it adds information to README.md to explain how user can get the submodules source code. Paulo Vital (3): Add Kimchi as module Add Ginger as module Update README.md with submodules information. .gitmodules | 6 ++++++ docs/README.md | 25 +++++++++++++++++++++++++ src/wok/plugins/ginger | 1 + 3 files changed, 32 insertions(+) create mode 100644 .gitmodules create mode 160000 src/wok/plugins/ginger -- 2.4.3

From: Paulo Vital <pvital@linux.vnet.ibm.com> Signed-off-by: Paulo Vital <pvital@linux.vnet.ibm.com> --- .gitmodules | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitmodules diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..b1f2aa8 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "src/wok/plugins/kimchi"] + path = src/wok/plugins/kimchi + url = https://github.com/kimchi-project/kimchi.git -- 2.4.3

From: Paulo Vital <pvital@linux.vnet.ibm.com> Signed-off-by: Paulo Vital <pvital@linux.vnet.ibm.com> --- .gitmodules | 3 +++ src/wok/plugins/ginger | 1 + 2 files changed, 4 insertions(+) create mode 160000 src/wok/plugins/ginger diff --git a/.gitmodules b/.gitmodules index b1f2aa8..0d80a2b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "src/wok/plugins/kimchi"] path = src/wok/plugins/kimchi url = https://github.com/kimchi-project/kimchi.git +[submodule "src/wok/plugins/ginger"] + path = src/wok/plugins/ginger + url = https://github.com/kimchi-project/ginger.git diff --git a/src/wok/plugins/ginger b/src/wok/plugins/ginger new file mode 160000 index 0000000..84f36db --- /dev/null +++ b/src/wok/plugins/ginger @@ -0,0 +1 @@ +Subproject commit 84f36dbbfe63869fa97cd68e9abdeaffdf1846d9 -- 2.4.3

From: Paulo Vital <pvital@linux.vnet.ibm.com> Signed-off-by: Paulo Vital <pvital@linux.vnet.ibm.com> --- docs/README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/README.md b/docs/README.md index f0b8697..ff521e0 100644 --- a/docs/README.md +++ b/docs/README.md @@ -148,6 +148,31 @@ Allow httpd_t context for Wok web server: $ sudo semanage permissive -a httpd_t +Wok Plugins +----------- + +Wok provides a Sample plugin to education purposes that can be used to create +new plugins. Also, by default, Wok is linked to Kimchi (Virtualization + Management) and Ginger (System Administration) repositories as git submodules. + +To clone Kimchi source code, execute: + + $ cd src/wok/plugins/kimchi + $ git submodule init + $ git submodule update + +To clone Ginger source code, execute: + + $ cd src/wok/plugins/ginger + $ git submodule init + $ git submodule update + +To automatically clone Kimchi and Ginger source code, use the following git +command when cloning Wok project: + + $ git clone --recursive https://github.com/kimchi-project/wok.git + + Participating ------------- -- 2.4.3
participants (2)
-
Aline Manera
-
pvital@linux.vnet.ibm.com