├── .gitignore ├── .rubocop.yml ├── LICENSE ├── README.md ├── cpe_8021x ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_8021x.rb ├── cpe_applicationaccess ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_applicationaccess.rb ├── cpe_ard ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_ard.rb ├── cpe_crypt ├── README.md ├── attributes │ └── default.rb ├── files │ └── crypt │ │ ├── FoundationPlist.py │ │ └── checkin ├── metadata.rb ├── recipes │ └── default.rb └── resources │ ├── cpe_crypt_authdb.rb │ ├── cpe_crypt_install.rb │ ├── cpe_crypt_ld.rb │ └── cpe_crypt_profile.rb ├── cpe_desktopwallpaper ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_desktopwallpaper.rb ├── cpe_dock ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_dock.rb ├── cpe_firewall ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ ├── default.rb │ ├── mac_os_x.rb │ └── windows.rb └── resources │ └── cpe_firewall.rb ├── cpe_gatekeeper ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_gatekeeper.rb ├── cpe_globalpreferences ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_globalpreferences.rb ├── cpe_helloit ├── README.md ├── attributes │ └── default.rb ├── files │ └── default │ │ └── helloit │ │ ├── CustomImageForItem │ │ └── AppIcon.icns │ │ ├── CustomScripts │ │ ├── com.github.ygini.hello-it.controlstrip.presenter.sh │ │ ├── com.github.ygini.hello-it.hide-desktop.sh │ │ ├── com.github.ygini.hello-it.hostname.sh │ │ ├── com.github.ygini.hello-it.ip.sh │ │ ├── com.github.ygini.hello-it.public-ip.sh │ │ ├── com.github.ygini.hello-it.scriptlib.sh │ │ └── com.github.ygini.hello-it.sleep.sh │ │ └── CustomStatusBarIcon │ │ ├── statusbar-dark.tiff │ │ ├── statusbar-error-dark.tiff │ │ ├── statusbar-error.tiff │ │ ├── statusbar-ok-dark.tiff │ │ ├── statusbar-ok.tiff │ │ ├── statusbar-unavailable-dark.tiff │ │ ├── statusbar-unavailable.tiff │ │ ├── statusbar-warning-dark.tiff │ │ ├── statusbar-warning.tiff │ │ └── statusbar.tiff ├── metadata.rb ├── recipes │ └── default.rb └── resources │ ├── cpe_helloit_defaults.rb │ ├── cpe_helloit_install.rb │ ├── cpe_helloit_la.rb │ └── cpe_helloit_profile.rb ├── cpe_kernelextensions ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_kernelextensions.rb ├── cpe_loginwindow ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_loginwindow.rb ├── cpe_mcx ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_mcx.rb ├── cpe_menulets ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_menulets.rb ├── cpe_passwordpolicy ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_passwordpolicy.rb ├── cpe_preferencesecurity ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_preferencesecurity.rb ├── cpe_screensaver ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_screensaver.rb ├── cpe_setupassistant ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_setupassistant.rb ├── cpe_smartcard ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_smartcard.rb ├── cpe_softwareupdate ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_softwareupdate.rb ├── cpe_submitdiaginfo ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_submitdiaginfo.rb ├── cpe_timemachine ├── README.md ├── attributes │ └── default.rb ├── metadata.rb ├── recipes │ └── default.rb └── resources │ └── cpe_timemachine.rb └── cpe_windows_task ├── README.md ├── attributes └── default.rb ├── metadata.rb ├── recipes └── default.rb └── resources └── cpe_windows_task.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/README.md -------------------------------------------------------------------------------- /cpe_8021x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_8021x/README.md -------------------------------------------------------------------------------- /cpe_8021x/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_8021x/attributes/default.rb -------------------------------------------------------------------------------- /cpe_8021x/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_8021x/metadata.rb -------------------------------------------------------------------------------- /cpe_8021x/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_8021x/recipes/default.rb -------------------------------------------------------------------------------- /cpe_8021x/resources/cpe_8021x.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_8021x/resources/cpe_8021x.rb -------------------------------------------------------------------------------- /cpe_applicationaccess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_applicationaccess/README.md -------------------------------------------------------------------------------- /cpe_applicationaccess/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_applicationaccess/attributes/default.rb -------------------------------------------------------------------------------- /cpe_applicationaccess/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_applicationaccess/metadata.rb -------------------------------------------------------------------------------- /cpe_applicationaccess/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_applicationaccess/recipes/default.rb -------------------------------------------------------------------------------- /cpe_applicationaccess/resources/cpe_applicationaccess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_applicationaccess/resources/cpe_applicationaccess.rb -------------------------------------------------------------------------------- /cpe_ard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_ard/README.md -------------------------------------------------------------------------------- /cpe_ard/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_ard/attributes/default.rb -------------------------------------------------------------------------------- /cpe_ard/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_ard/metadata.rb -------------------------------------------------------------------------------- /cpe_ard/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_ard/recipes/default.rb -------------------------------------------------------------------------------- /cpe_ard/resources/cpe_ard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_ard/resources/cpe_ard.rb -------------------------------------------------------------------------------- /cpe_crypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_crypt/README.md -------------------------------------------------------------------------------- /cpe_crypt/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_crypt/attributes/default.rb -------------------------------------------------------------------------------- /cpe_crypt/files/crypt/FoundationPlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_crypt/files/crypt/FoundationPlist.py -------------------------------------------------------------------------------- /cpe_crypt/files/crypt/checkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_crypt/files/crypt/checkin -------------------------------------------------------------------------------- /cpe_crypt/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_crypt/metadata.rb -------------------------------------------------------------------------------- /cpe_crypt/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_crypt/recipes/default.rb -------------------------------------------------------------------------------- /cpe_crypt/resources/cpe_crypt_authdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_crypt/resources/cpe_crypt_authdb.rb -------------------------------------------------------------------------------- /cpe_crypt/resources/cpe_crypt_install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_crypt/resources/cpe_crypt_install.rb -------------------------------------------------------------------------------- /cpe_crypt/resources/cpe_crypt_ld.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_crypt/resources/cpe_crypt_ld.rb -------------------------------------------------------------------------------- /cpe_crypt/resources/cpe_crypt_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_crypt/resources/cpe_crypt_profile.rb -------------------------------------------------------------------------------- /cpe_desktopwallpaper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_desktopwallpaper/README.md -------------------------------------------------------------------------------- /cpe_desktopwallpaper/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_desktopwallpaper/attributes/default.rb -------------------------------------------------------------------------------- /cpe_desktopwallpaper/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_desktopwallpaper/metadata.rb -------------------------------------------------------------------------------- /cpe_desktopwallpaper/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_desktopwallpaper/recipes/default.rb -------------------------------------------------------------------------------- /cpe_desktopwallpaper/resources/cpe_desktopwallpaper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_desktopwallpaper/resources/cpe_desktopwallpaper.rb -------------------------------------------------------------------------------- /cpe_dock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_dock/README.md -------------------------------------------------------------------------------- /cpe_dock/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_dock/attributes/default.rb -------------------------------------------------------------------------------- /cpe_dock/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_dock/metadata.rb -------------------------------------------------------------------------------- /cpe_dock/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_dock/recipes/default.rb -------------------------------------------------------------------------------- /cpe_dock/resources/cpe_dock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_dock/resources/cpe_dock.rb -------------------------------------------------------------------------------- /cpe_firewall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_firewall/README.md -------------------------------------------------------------------------------- /cpe_firewall/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_firewall/attributes/default.rb -------------------------------------------------------------------------------- /cpe_firewall/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_firewall/metadata.rb -------------------------------------------------------------------------------- /cpe_firewall/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_firewall/recipes/default.rb -------------------------------------------------------------------------------- /cpe_firewall/recipes/mac_os_x.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_firewall/recipes/mac_os_x.rb -------------------------------------------------------------------------------- /cpe_firewall/recipes/windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_firewall/recipes/windows.rb -------------------------------------------------------------------------------- /cpe_firewall/resources/cpe_firewall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_firewall/resources/cpe_firewall.rb -------------------------------------------------------------------------------- /cpe_gatekeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_gatekeeper/README.md -------------------------------------------------------------------------------- /cpe_gatekeeper/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_gatekeeper/attributes/default.rb -------------------------------------------------------------------------------- /cpe_gatekeeper/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_gatekeeper/metadata.rb -------------------------------------------------------------------------------- /cpe_gatekeeper/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_gatekeeper/recipes/default.rb -------------------------------------------------------------------------------- /cpe_gatekeeper/resources/cpe_gatekeeper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_gatekeeper/resources/cpe_gatekeeper.rb -------------------------------------------------------------------------------- /cpe_globalpreferences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_globalpreferences/README.md -------------------------------------------------------------------------------- /cpe_globalpreferences/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_globalpreferences/attributes/default.rb -------------------------------------------------------------------------------- /cpe_globalpreferences/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_globalpreferences/metadata.rb -------------------------------------------------------------------------------- /cpe_globalpreferences/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_globalpreferences/recipes/default.rb -------------------------------------------------------------------------------- /cpe_globalpreferences/resources/cpe_globalpreferences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_globalpreferences/resources/cpe_globalpreferences.rb -------------------------------------------------------------------------------- /cpe_helloit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/README.md -------------------------------------------------------------------------------- /cpe_helloit/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/attributes/default.rb -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomImageForItem/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomImageForItem/AppIcon.icns -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.controlstrip.presenter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.controlstrip.presenter.sh -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.hide-desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.hide-desktop.sh -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.hostname.sh -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.ip.sh -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.public-ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.public-ip.sh -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.scriptlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.scriptlib.sh -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.sleep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomScripts/com.github.ygini.hello-it.sleep.sh -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-dark.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-dark.tiff -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-error-dark.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-error-dark.tiff -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-error.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-error.tiff -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-ok-dark.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-ok-dark.tiff -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-ok.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-ok.tiff -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-unavailable-dark.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-unavailable-dark.tiff -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-unavailable.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-unavailable.tiff -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-warning-dark.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-warning-dark.tiff -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-warning.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar-warning.tiff -------------------------------------------------------------------------------- /cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/files/default/helloit/CustomStatusBarIcon/statusbar.tiff -------------------------------------------------------------------------------- /cpe_helloit/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/metadata.rb -------------------------------------------------------------------------------- /cpe_helloit/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/recipes/default.rb -------------------------------------------------------------------------------- /cpe_helloit/resources/cpe_helloit_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/resources/cpe_helloit_defaults.rb -------------------------------------------------------------------------------- /cpe_helloit/resources/cpe_helloit_install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/resources/cpe_helloit_install.rb -------------------------------------------------------------------------------- /cpe_helloit/resources/cpe_helloit_la.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/resources/cpe_helloit_la.rb -------------------------------------------------------------------------------- /cpe_helloit/resources/cpe_helloit_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_helloit/resources/cpe_helloit_profile.rb -------------------------------------------------------------------------------- /cpe_kernelextensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_kernelextensions/README.md -------------------------------------------------------------------------------- /cpe_kernelextensions/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_kernelextensions/attributes/default.rb -------------------------------------------------------------------------------- /cpe_kernelextensions/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_kernelextensions/metadata.rb -------------------------------------------------------------------------------- /cpe_kernelextensions/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_kernelextensions/recipes/default.rb -------------------------------------------------------------------------------- /cpe_kernelextensions/resources/cpe_kernelextensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_kernelextensions/resources/cpe_kernelextensions.rb -------------------------------------------------------------------------------- /cpe_loginwindow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_loginwindow/README.md -------------------------------------------------------------------------------- /cpe_loginwindow/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_loginwindow/attributes/default.rb -------------------------------------------------------------------------------- /cpe_loginwindow/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_loginwindow/metadata.rb -------------------------------------------------------------------------------- /cpe_loginwindow/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_loginwindow/recipes/default.rb -------------------------------------------------------------------------------- /cpe_loginwindow/resources/cpe_loginwindow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_loginwindow/resources/cpe_loginwindow.rb -------------------------------------------------------------------------------- /cpe_mcx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_mcx/README.md -------------------------------------------------------------------------------- /cpe_mcx/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_mcx/attributes/default.rb -------------------------------------------------------------------------------- /cpe_mcx/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_mcx/metadata.rb -------------------------------------------------------------------------------- /cpe_mcx/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_mcx/recipes/default.rb -------------------------------------------------------------------------------- /cpe_mcx/resources/cpe_mcx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_mcx/resources/cpe_mcx.rb -------------------------------------------------------------------------------- /cpe_menulets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_menulets/README.md -------------------------------------------------------------------------------- /cpe_menulets/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_menulets/attributes/default.rb -------------------------------------------------------------------------------- /cpe_menulets/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_menulets/metadata.rb -------------------------------------------------------------------------------- /cpe_menulets/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_menulets/recipes/default.rb -------------------------------------------------------------------------------- /cpe_menulets/resources/cpe_menulets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_menulets/resources/cpe_menulets.rb -------------------------------------------------------------------------------- /cpe_passwordpolicy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_passwordpolicy/README.md -------------------------------------------------------------------------------- /cpe_passwordpolicy/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_passwordpolicy/attributes/default.rb -------------------------------------------------------------------------------- /cpe_passwordpolicy/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_passwordpolicy/metadata.rb -------------------------------------------------------------------------------- /cpe_passwordpolicy/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_passwordpolicy/recipes/default.rb -------------------------------------------------------------------------------- /cpe_passwordpolicy/resources/cpe_passwordpolicy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_passwordpolicy/resources/cpe_passwordpolicy.rb -------------------------------------------------------------------------------- /cpe_preferencesecurity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_preferencesecurity/README.md -------------------------------------------------------------------------------- /cpe_preferencesecurity/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_preferencesecurity/attributes/default.rb -------------------------------------------------------------------------------- /cpe_preferencesecurity/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_preferencesecurity/metadata.rb -------------------------------------------------------------------------------- /cpe_preferencesecurity/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_preferencesecurity/recipes/default.rb -------------------------------------------------------------------------------- /cpe_preferencesecurity/resources/cpe_preferencesecurity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_preferencesecurity/resources/cpe_preferencesecurity.rb -------------------------------------------------------------------------------- /cpe_screensaver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_screensaver/README.md -------------------------------------------------------------------------------- /cpe_screensaver/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_screensaver/attributes/default.rb -------------------------------------------------------------------------------- /cpe_screensaver/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_screensaver/metadata.rb -------------------------------------------------------------------------------- /cpe_screensaver/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_screensaver/recipes/default.rb -------------------------------------------------------------------------------- /cpe_screensaver/resources/cpe_screensaver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_screensaver/resources/cpe_screensaver.rb -------------------------------------------------------------------------------- /cpe_setupassistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_setupassistant/README.md -------------------------------------------------------------------------------- /cpe_setupassistant/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_setupassistant/attributes/default.rb -------------------------------------------------------------------------------- /cpe_setupassistant/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_setupassistant/metadata.rb -------------------------------------------------------------------------------- /cpe_setupassistant/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_setupassistant/recipes/default.rb -------------------------------------------------------------------------------- /cpe_setupassistant/resources/cpe_setupassistant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_setupassistant/resources/cpe_setupassistant.rb -------------------------------------------------------------------------------- /cpe_smartcard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_smartcard/README.md -------------------------------------------------------------------------------- /cpe_smartcard/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_smartcard/attributes/default.rb -------------------------------------------------------------------------------- /cpe_smartcard/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_smartcard/metadata.rb -------------------------------------------------------------------------------- /cpe_smartcard/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_smartcard/recipes/default.rb -------------------------------------------------------------------------------- /cpe_smartcard/resources/cpe_smartcard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_smartcard/resources/cpe_smartcard.rb -------------------------------------------------------------------------------- /cpe_softwareupdate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_softwareupdate/README.md -------------------------------------------------------------------------------- /cpe_softwareupdate/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_softwareupdate/attributes/default.rb -------------------------------------------------------------------------------- /cpe_softwareupdate/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_softwareupdate/metadata.rb -------------------------------------------------------------------------------- /cpe_softwareupdate/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_softwareupdate/recipes/default.rb -------------------------------------------------------------------------------- /cpe_softwareupdate/resources/cpe_softwareupdate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_softwareupdate/resources/cpe_softwareupdate.rb -------------------------------------------------------------------------------- /cpe_submitdiaginfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_submitdiaginfo/README.md -------------------------------------------------------------------------------- /cpe_submitdiaginfo/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_submitdiaginfo/attributes/default.rb -------------------------------------------------------------------------------- /cpe_submitdiaginfo/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_submitdiaginfo/metadata.rb -------------------------------------------------------------------------------- /cpe_submitdiaginfo/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_submitdiaginfo/recipes/default.rb -------------------------------------------------------------------------------- /cpe_submitdiaginfo/resources/cpe_submitdiaginfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_submitdiaginfo/resources/cpe_submitdiaginfo.rb -------------------------------------------------------------------------------- /cpe_timemachine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_timemachine/README.md -------------------------------------------------------------------------------- /cpe_timemachine/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_timemachine/attributes/default.rb -------------------------------------------------------------------------------- /cpe_timemachine/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_timemachine/metadata.rb -------------------------------------------------------------------------------- /cpe_timemachine/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_timemachine/recipes/default.rb -------------------------------------------------------------------------------- /cpe_timemachine/resources/cpe_timemachine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_timemachine/resources/cpe_timemachine.rb -------------------------------------------------------------------------------- /cpe_windows_task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_windows_task/README.md -------------------------------------------------------------------------------- /cpe_windows_task/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_windows_task/attributes/default.rb -------------------------------------------------------------------------------- /cpe_windows_task/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_windows_task/metadata.rb -------------------------------------------------------------------------------- /cpe_windows_task/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_windows_task/recipes/default.rb -------------------------------------------------------------------------------- /cpe_windows_task/resources/cpe_windows_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/it-cpe-cookbooks/HEAD/cpe_windows_task/resources/cpe_windows_task.rb --------------------------------------------------------------------------------