Last active
December 14, 2015 04:08
-
-
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 file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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