From c4d3e762f95429a20b4f893abbfbcb4080843ed1 Mon Sep 17 00:00:00 2001 From: Jonathan Bauer Date: Thu, 8 May 2014 14:50:46 +0200 Subject: [openstack] added REQUIRED_*_PACKAGES for ubuntu 14.04 --- remote/modules/openstack/module.conf | 3 --- remote/modules/openstack/module.conf.ubuntu.14.04 | 9 +++++++++ 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 remote/modules/openstack/module.conf.ubuntu.14.04 (limited to 'remote') diff --git a/remote/modules/openstack/module.conf b/remote/modules/openstack/module.conf index 8912f439..0cd03752 100644 --- a/remote/modules/openstack/module.conf +++ b/remote/modules/openstack/module.conf @@ -1,6 +1,3 @@ -REQUIRED_CONTENT_PACKAGES="" -REQUIRED_INSTALLED_PACKAGES="" - REQUIRED_BINARIES="" REQUIRED_LIBRARIES="" REQUIRED_DIRECTORIES="" diff --git a/remote/modules/openstack/module.conf.ubuntu.14.04 b/remote/modules/openstack/module.conf.ubuntu.14.04 new file mode 100644 index 00000000..7c24b4a9 --- /dev/null +++ b/remote/modules/openstack/module.conf.ubuntu.14.04 @@ -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" -- cgit v1.2.3-55-g7522 From 7c2da2fb34ec68b36f4399a51866ffeeffc4c253 Mon Sep 17 00:00:00 2001 From: Jonathan Bauer Date: Thu, 8 May 2014 14:52:02 +0200 Subject: [one-time-fix] first check if xfce4 is installed before installing greybird theme --- remote/onetime-fixes/install-xfce4-greybird-theme | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'remote') diff --git a/remote/onetime-fixes/install-xfce4-greybird-theme b/remote/onetime-fixes/install-xfce4-greybird-theme index fd9a0819..6c1251a3 100755 --- a/remote/onetime-fixes/install-xfce4-greybird-theme +++ b/remote/onetime-fixes/install-xfce4-greybird-theme @@ -1,5 +1,11 @@ #!/bin/sh +if ! which startxfce4 ; then + # xfce4 not installed, TODO install? + echo "Could not find 'startxfce4'. Is it installed?" + exit 1 +fi + # first download the greybird theme if wget https://github.com/shimmerproject/Greybird/tarball/master -O /tmp/greybird.tgz ; then -- cgit v1.2.3-55-g7522