summaryrefslogtreecommitdiffstats
path: root/core/modules/openstack
diff options
context:
space:
mode:
authorSebastian2016-04-25 12:01:08 +0200
committerSebastian2016-04-25 12:01:08 +0200
commit5acda3eaeabae9045609539303a8c12c4ce401f1 (patch)
tree7e71975f8570b05aafe2ea6ec0e242a8912387bb /core/modules/openstack
parentinitial commit (diff)
downloadmltk-5acda3eaeabae9045609539303a8c12c4ce401f1.tar.gz
mltk-5acda3eaeabae9045609539303a8c12c4ce401f1.tar.xz
mltk-5acda3eaeabae9045609539303a8c12c4ce401f1.zip
merge with latest dev version
Diffstat (limited to 'core/modules/openstack')
-rw-r--r--core/modules/openstack/README25
-rw-r--r--core/modules/openstack/module.build11
-rw-r--r--core/modules/openstack/module.conf3
-rw-r--r--core/modules/openstack/module.conf.ubuntu.149
4 files changed, 48 insertions, 0 deletions
diff --git a/core/modules/openstack/README b/core/modules/openstack/README
new file mode 100644
index 00000000..ce373f20
--- /dev/null
+++ b/core/modules/openstack/README
@@ -0,0 +1,25 @@
+Hier die Installationsschritte für 14.04:
+
+apt-get install -y neutron-common neutron-plugin-ml2 neutron-plugin-openvswitch-agent nova-compute-kvm python-guestfs python-mysqldb
+
+* System konfigurieren:
+dpkg-statoverride --update --add root root 0644 /boot/vmlinuz-$(uname -r)
+
+add to: /etc/sysctl.conf
+net.ipv4.conf.all.rp_filter=0
+net.ipv4.conf.default.rp_filter=0
+
+sysctl -p
+
+ovs-vsctl add-br br-int
+
+Configs:
+/etc/nova/api-paste.ini
+/etc/nova/nova.conf
+/etc/nova/nova-compute.conf
+
+/etc/neutron/api-paste.ini
+/etc/neutron/neutron.conf
+/etc/neutron/plugin/
+
+Ich denke die configs packen wir in die config.tgz
diff --git a/core/modules/openstack/module.build b/core/modules/openstack/module.build
new file mode 100644
index 00000000..97e93235
--- /dev/null
+++ b/core/modules/openstack/module.build
@@ -0,0 +1,11 @@
+fetch_source() {
+ :
+}
+
+build() {
+ :
+}
+
+post_copy() {
+ :
+}
diff --git a/core/modules/openstack/module.conf b/core/modules/openstack/module.conf
new file mode 100644
index 00000000..0cd03752
--- /dev/null
+++ b/core/modules/openstack/module.conf
@@ -0,0 +1,3 @@
+REQUIRED_BINARIES=""
+REQUIRED_LIBRARIES=""
+REQUIRED_DIRECTORIES=""
diff --git a/core/modules/openstack/module.conf.ubuntu.14 b/core/modules/openstack/module.conf.ubuntu.14
new file mode 100644
index 00000000..7c24b4a9
--- /dev/null
+++ b/core/modules/openstack/module.conf.ubuntu.14
@@ -0,0 +1,9 @@
+REQUIRED_INSTALLED_PACKAGES="
+ neutron-common
+ neutron-plugin-ml2
+ neutron-plugin-openvswitch-agent
+ nova-compute-kvm
+ python-guestfs
+ python-mysqldb
+"
+REQUIRED_CONTENT_PACKAGES="$REQUIRED_INSTALLED_PACKAGES"