# OVERVIEW

Netdev is a vendor-neutral network abstraction framework contributed freely to the DevOps community.

This module contains the Broadcom NOS specific Provider code. 

# EXAMPLE USAGE

This module has been tested against Puppet agent 3.1.1.  Here is a short example of a static manifest for a Broadcom NOS device

~~~

node 'My_Ethernet_switch' {
  $config_script_file = "config.scr"
  $file_path = "/mnt/fastpath/"

  file { "$file_path$config_script_file":
    source => "puppet:///files/$config_script_file",
  }

  netdev_config_script { 'config_script':
    file => "$file_path$config_script_file",
    action => 'apply',
  }
}

~~~

# DEPENDENCIES

  * Broadcom NOS device with puppet support:

# INSTALLATION ON PUPPET-MASTER

  * puppet module install netdev_stdlib_brcm

# CONTRIBUTORS

   Broadcom

License
-------
See LICENSE file

