diff options
| -rw-r--r-- | remote/modules/openstack/README | 25 | ||||
| -rw-r--r-- | remote/modules/openstack/module.build | 11 | ||||
| -rw-r--r-- | remote/modules/openstack/module.conf | 6 |
3 files changed, 42 insertions, 0 deletions
diff --git a/remote/modules/openstack/README b/remote/modules/openstack/README new file mode 100644 index 00000000..ce373f20 --- /dev/null +++ b/remote/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/remote/modules/openstack/module.build b/remote/modules/openstack/module.build new file mode 100644 index 00000000..97e93235 --- /dev/null +++ b/remote/modules/openstack/module.build @@ -0,0 +1,11 @@ +fetch_source() { + : +} + +build() { + : +} + +post_copy() { + : +} diff --git a/remote/modules/openstack/module.conf b/remote/modules/openstack/module.conf new file mode 100644 index 00000000..8912f439 --- /dev/null +++ b/remote/modules/openstack/module.conf @@ -0,0 +1,6 @@ +REQUIRED_CONTENT_PACKAGES="" +REQUIRED_INSTALLED_PACKAGES="" + +REQUIRED_BINARIES="" +REQUIRED_LIBRARIES="" +REQUIRED_DIRECTORIES="" |
