Puppet Class: icloud
- Defined in:
- manifests/init.pp
Overview
Class: icloud
Configure iCloud options
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'manifests/init.pp', line 5
class icloud (
) {
boxen::osx_defaults { 'Disable photo stream':
user => $::boxen_user,
domain => 'com.apple.CloudPhotosConfiguration',
key => 'com.apple.photo.icloud.myphotostream',
value => 0,
type => 'integer'
}
boxen::osx_defaults { 'Disable shared streams':
user => $::boxen_user,
domain => 'com.apple.CloudPhotosConfiguration',
key => 'com.apple.photo.icloud.sharedstreams',
value => 0,
type => 'integer'
}
boxen::osx_defaults { 'Disable cloud photo':
user => $::boxen_user,
domain => 'com.apple.CloudPhotosConfiguration',
key => 'com.apple.photo.icloud.cloudphoto',
value => 0,
type => 'integer'
}
}
|