Puppet Class: osx::dock
- Defined in:
- manifests/dock.pp
Overview
Internal: Restart the Dock when necessary.
Example
boxen::osx_defaults { 'Do a thing':
# ... other stuff here ...
notify => Exec['killall Dock'];
}
9 10 11 12 13 |
# File 'manifests/dock.pp', line 9
class osx::dock {
exec { 'killall Dock':
refreshonly => true
}
}
|