Defined Type: config_sync
- Defined in:
- manifests/driver_sync.pp
Overview
65 66 67 68 69 70 71 72 |
# File 'manifests/driver_sync.pp', line 65
define config_sync($driver, $config) {
file_line { "config_sync ${title}":
ensure => present,
path => "/bin/emc/scaleio/${driver}_sync/driver_sync.conf",
match => "^${title}",
line => "${title}=${config[$title]}",
}
}
|