summaryrefslogtreecommitdiffstats
path: root/fuel-plugin-ovsnfv/deployment_scripts/puppet/modules/ovsdpdk/manifests/uninstall_ovs.pp
diff options
context:
space:
mode:
authorBilly O'Mahony <billy.o.mahony@intel.com>2016-01-06 17:00:41 +0000
committerBilly O'Mahony <billy.o.mahony@intel.com>2016-01-06 17:14:07 +0000
commit93f7683a2cd9b8020f8870dfc6b162b3d61c3fd2 (patch)
treefa7573a61d24cd0712920a04c07e2b48a1020644 /fuel-plugin-ovsnfv/deployment_scripts/puppet/modules/ovsdpdk/manifests/uninstall_ovs.pp
parentebf6ae51abdaa29eb8eaf9bc41a4187bac6ec0ff (diff)
fuel plugin: Initial version
Change-Id: Ib41afff8f0b0f5e7c2f92f78cbdc48c99891b1ab Signed-off-by: Mark D. Gray <mark.d.gray@intel.com> Signed-off-by: Billy O'Mahony <billy.o.mahony@intel.com> Signed-off-by: Michal Ptacek <michalx.ptacek@intel.com>
Diffstat (limited to 'fuel-plugin-ovsnfv/deployment_scripts/puppet/modules/ovsdpdk/manifests/uninstall_ovs.pp')
-rwxr-xr-xfuel-plugin-ovsnfv/deployment_scripts/puppet/modules/ovsdpdk/manifests/uninstall_ovs.pp46
1 files changed, 46 insertions, 0 deletions
diff --git a/fuel-plugin-ovsnfv/deployment_scripts/puppet/modules/ovsdpdk/manifests/uninstall_ovs.pp b/fuel-plugin-ovsnfv/deployment_scripts/puppet/modules/ovsdpdk/manifests/uninstall_ovs.pp
new file mode 100755
index 0000000..97afdd7
--- /dev/null
+++ b/fuel-plugin-ovsnfv/deployment_scripts/puppet/modules/ovsdpdk/manifests/uninstall_ovs.pp
@@ -0,0 +1,46 @@
+# == Class: ovsdpdk::uninstall_ovs
+#
+# Provides uninstallation of openvswitch package (if present) together with removing of kernel module
+#
+class ovsdpdk::uninstall_ovs (
+ $openvswitch_service_name = $::ovsdpdk::params::openvswitch_service_name,
+ $openvswitch_agent = $::ovsdpdk::params::openvswitch_agent,
+ $install_packages = $::ovsdpdk::params::install_packages,
+ $openvswitch_agent = $::ovsdpdk::params::openvswitch_agent,
+) inherits ovsdpdk {
+
+ #Due to dependencies to other packages, we won't purge vanilla OVS
+ #package { $remove_packages: ensure => 'purged' }
+
+ if $compute == 'True' {
+ exec { "/usr/sbin/service ${openvswitch_service_name} stop":
+ user => root,
+ }
+
+# This is required for Liberty
+# exec { "/usr/sbin/service ${openvswitch_agent} stop":
+# user => root,
+# path => "/usr/bin:/bin",
+# }
+ }
+
+ if $controller == 'True' {
+ exec { '/usr/sbin/service neutron-server stop':
+ user => root,
+ path => "/usr/bin:/bin",
+ onlyif => "ps aux | grep -vws grep | grep -ws neutron-server"
+ }
+ }
+
+ package { $install_packages: ensure => 'installed' }
+
+ if $compute == 'True' {
+ exec { '/sbin/modprobe -r openvswitch':
+ onlyif => "/bin/grep -q '^openvswitch' '/proc/modules'",
+ user => root,
+# require => Exec["/usr/sbin/service ${openvswitch_agent} stop"],
+ }
+ }
+
+}
+