cookbook 'mac_os_x', '~> 1.4.6'
The mac_os_x cookbook has been deprecated
Author provided reason for deprecation:
The mac_os_x cookbook has been deprecated and is no longer being maintained by its authors. Use of the mac_os_x cookbook is no longer recommended.
You may find that the macos cookbook is a suitable alternative.
mac_os_x (11) Versions 1.4.6 Follow22
Manage OS X user defaults settings
cookbook 'mac_os_x', '~> 1.4.6', :supermarket
knife supermarket install mac_os_x
knife supermarket download mac_os_x
Description
This cookbook has two resources for managing local user settings on OS
X:
-
mac_os_x_plist_file
- manages "plist
" settings files for OS X applications. -
mac_os_x_userdefaults
- manages settings in OS X'sdefaults(1)
system.
This cookbook also includes a number of helper recipes.
Requirements
Platform
Tested on Mac OS X 10.6.8, 10.7.2 and 10.8.3.
Attributes
-
node['mac_os_x']['settings_user']
- Used in themac_os_x::settings
recipe, this specifies the user to apply settings usingmac_os_x_userdefaults
LWRP. Defaults to the user currently running Chef (node['current_user']
). -
node['mac_os_x']['settings']
- A hash of settings to apply with themac_os_x_userdefaults
LWRP (see below), used in themac_os_x::settings
recipe. Set up sub-attributes for each domain's settings to apply. The attribute must be a hash, and must have a "domain" key with the domain of the defaults setting. Each key is a "key" used in the LWRP, and its value is the corresponding "value"
For example, some 'dock' settings (for com.apple.dock):
node.default['mac_os_x']['settings']['dock'] = { "domain" => "com.apple.dock", "no-glass" => true, "autohide" => true, "showhidden" => true }
Resource/Provider
mac_os_x_userdefaults
Manage the Mac OS X user defaults(1) system. The parameters to the
resource are passed to the defaults command and the parameters follow
convention of the OS X command. See the defaults(1) man page for
detail on how the tool works.
Actions
- :write: write the setting to the specified domain. Default.
Attribute Parameters
- domain: The domain the defaults belong to. Required. Name attribute.
- global: Whether the domain is global. Can be true or false. Default false.
- key: The preference key. Required.
- value: The value of the key. Required.
- type: Value type of the preference key.
- user: User for which to set the default.
- sudo: Set to true if the setting requires privileged access to modify. Default false.
value
settings of 1
, TRUE
, true
, YES
or yes
are treated as
true by defaults(1), and are handled in the provider.
value
settings of 0
, FALSE
, false
, NO
or no
are treated as
false by defaults (1) and are also handled by the provider.
Limitations
The current version cannot handle plists or dictionaries.
Examples
Simple example that uses the com.apple.systempreferences
domain,
with a single key and value.
mac_os_x_userdefaults "enable time machine on unsupported volumes" do
domain "com.apple.systempreferences"
key "TMShowUnsupportedNetworkVolumes"
value "1"
end
Specify a global domain. Note that the key is not required for global domains.
mac_os_x_userdefaults "full keyboard access to all controls" do
domain "AppleKeyboardUIMode"
global true
value "2"
end
A boolean type that uses truthiness (TRUE).
mac_os_x_userdefaults "finder expanded save dialogs" do
domain "NSNavPanelExpandedStateForSaveMode"
global true
value "TRUE"
type "bool"
end
A setting that uses an int (integer) type.
mac_os_x_userdefaults "enable OS X firewall" do
domain "/Library/Preferences/com.apple.alf"
key "globalstate"
value "1"
type "int"
end
LWRP's can send notifications, so we can change the Dock, and then
refresh it to take effect.
execute "killall Dock" do
action :nothing
end
mac_os_x_userdefaults "set dock size" do
domain "com.apple.dock"
type "integer"
key "tilesize"
value "20"
notifies :run, "execute[killall Dock]"
end
This setting requires privileged access to modify, so tell it to use
sudo. Note that this will prompt for the user password if sudo hasn't
been modified for NOPASSWD.
mac_os_x_userdefaults "disable time machine normal schedule" do
domain "/System/Library/LaunchDaemons/com.apple.backupd-auto"
key "Disabled"
value "1"
sudo true
end
mac_os_x_plist_file
Manages the property list (plist) preferences file with the
cookbook_file
Chef resource. Files will be dropped in
Library/Preferences
under the home directory of the user running
Chef.
Actions
- :create: create the file. Default.
Attribute Parameters
- source: file name to use in the files directory of the cookbook. Name attribute.
- cookbook: cookbook where the plist file is located.
Examples
Write the iTerm 2 preferences to
~/Library/Preferences/com.googlecode.iterm2.plist
.
mac_os_x_plist_file "com.googlecode.iterm2.plist"
Recipes
The recipes in this cookbook provide example usage of the defaults(1)
LWRP, and have some useful system preference settings. They were
originally based on work done in Pivotal Labs workstation management
repository, though are new code given the LWRP rewrite.
dock_preferences
Turns on:
- auto hide
- magnification
Turns off:
- animation switching workspaces
Sets the tile size to really small.
finder
Sets Finder save dialogs to expanded by default.
firewall
Enables the OS X firewall.
kbaccess
Enables keyboard access to all window controls. In other words, "Tab"
will cycle focus to buttons instead of just text entry fields.
key_repeat
Set the default key repeat rate to fast and the delay to short.
screensaver
Enables password protection for screensaver and sets the delay to ask for password.
time_machine
Enable time machine to backup to unsupported devices like NAS drives or AFP shares.
settings
Iterates over the node['mac_os_x']['settings']
attribute (see
Attributes above) for domain settings to apply. The attributes file
has commented-out settings to use for examples; this attribute is by
default an empty hash. You are encouraged to set the attributes for
your own nodes through a role, rather than modifying the cookbook's
attributes file directly.
To set user defaults for a user other than the one running Chef,
change the node['mac_os_x']['settings_user']
attribute.
Recipes above which implement specific settings through
mac_os_x_userdefaults
can be replaced entirely through the use of
attributes, and may be removed in favor of this in a future release.
Assumptions
There are a couple glaring assumptions made by this recipe.
- If the domain starts with
/Library/Preferences
, then sudo is set to true, as that is not user writable. - If the domain is
NSGlobalDomain
, then global is set to true.
License and Author
- Author: Joshua Timberman (cookbooks@housepub.org)
Author: Ben Bleything (ben@bleything.net)
Copyright 2011-2013, Joshua Timberman
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Dependent cookbooks
This cookbook has no specified dependencies.
Contingent cookbooks
Collaborator Number Metric
1.4.6 failed this metric
Failure: Cookbook has 1 collaborators. A cookbook must have at least 2 collaborators to pass this metric.
Contributing File Metric
1.4.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
1.4.6 failed this metric
FC064: Ensure issues_url is set in metadata: mac_os_x/metadata.rb:1
FC065: Ensure source_url is set in metadata: mac_os_x/metadata.rb:1
FC066: Ensure chef_version is set in metadata: mac_os_x/metadata.rb:1
FC069: Ensure standardized license defined in metadata: mac_os_x/metadata.rb:1
FC074: LWRP should use DSL to define resource's default action: mac_os_x/resources/plist_file.rb:1
FC074: LWRP should use DSL to define resource's default action: mac_os_x/resources/userdefaults.rb:1
FC085: Resource using new_resource.updated_by_last_action to converge resource: mac_os_x/providers/plist_file.rb:30
FC085: Resource using new_resource.updated_by_last_action to converge resource: mac_os_x/providers/userdefaults.rb:78
FC104: Use the :run action in ruby_block instead of :create: mac_os_x/recipes/lion_ical.rb:35
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
No Binaries Metric
1.4.6 passed this metric
Testing File Metric
1.4.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
1.4.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
1.4.6 failed this metric
1.4.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
1.4.6 failed this metric
FC064: Ensure issues_url is set in metadata: mac_os_x/metadata.rb:1
FC065: Ensure source_url is set in metadata: mac_os_x/metadata.rb:1
FC066: Ensure chef_version is set in metadata: mac_os_x/metadata.rb:1
FC069: Ensure standardized license defined in metadata: mac_os_x/metadata.rb:1
FC074: LWRP should use DSL to define resource's default action: mac_os_x/resources/plist_file.rb:1
FC074: LWRP should use DSL to define resource's default action: mac_os_x/resources/userdefaults.rb:1
FC085: Resource using new_resource.updated_by_last_action to converge resource: mac_os_x/providers/plist_file.rb:30
FC085: Resource using new_resource.updated_by_last_action to converge resource: mac_os_x/providers/userdefaults.rb:78
FC104: Use the :run action in ruby_block instead of :create: mac_os_x/recipes/lion_ical.rb:35
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
No Binaries Metric
1.4.6 passed this metric
Testing File Metric
1.4.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
1.4.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
1.4.6 failed this metric
FC065: Ensure source_url is set in metadata: mac_os_x/metadata.rb:1
FC066: Ensure chef_version is set in metadata: mac_os_x/metadata.rb:1
FC069: Ensure standardized license defined in metadata: mac_os_x/metadata.rb:1
FC074: LWRP should use DSL to define resource's default action: mac_os_x/resources/plist_file.rb:1
FC074: LWRP should use DSL to define resource's default action: mac_os_x/resources/userdefaults.rb:1
FC085: Resource using new_resource.updated_by_last_action to converge resource: mac_os_x/providers/plist_file.rb:30
FC085: Resource using new_resource.updated_by_last_action to converge resource: mac_os_x/providers/userdefaults.rb:78
FC104: Use the :run action in ruby_block instead of :create: mac_os_x/recipes/lion_ical.rb:35
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
1.4.6 passed this metric
Testing File Metric
1.4.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
1.4.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
1.4.6 failed this metric
1.4.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number