Skip to content

Instantly share code, notes, and snippets.

@scottslowe
Last active December 14, 2015 04:08
Show Gist options
  • Save scottslowe/5025745 to your computer and use it in GitHub Desktop.
Save scottslowe/5025745 to your computer and use it in GitHub Desktop.
This snippet of Puppet code could be used on RHEL/RHEL variants to help automate the configuration of OVS.
# This code declares a file resource to manage an interface
# configuration script on RHEL/RHEL variants for automated
# configuration of OVS.
#
file {'/etc/sysconfig/network-scripts/ifcfg-mgmt0':
ensure => 'present',
source => 'puppet:///modules/module-name/ovs-ifcfg-mgmt0',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment