Developers rely on powerful package managers like Homebrew for quick installations. IT teams must have visibility into deployments and may need to enforce restrictions to ensure security and compliance. Managing software at scale for developer-centric environments is challenging.
The Workbrew + Jamf Pro integration lets IT admins enforce enterprise grade security and control, while ensuring developers have the tools they need.
Workbrew simplifies Homebrew management for enterprises, ensuring software management is secure, automated, and compliant. With Workbrew, you can install Homebrew across large fleets of macOS devices, gaining access to the most popular package manager for macOS and over 15,000 packages, with the peace of mind given by centralized management and real-time monitoring of all software installed with Homebrew.
Workbrew bridges the gap between developer flexibility and IT control, keeping software up-to-date and secure.
Jamf Pro is a popular Apple device management (MDM) solution, providing IT teams the ability to remotely manage devices, set security policies, and deploy software
Integrating Jamf Pro with Workbrew gives your organization the best of both worlds: Existing Jamf users can keep peace of mind whilst empowering their developers with best in class package management, whilst existing Workbrew users gain zero-touch deployment and automated device inventory syncing.
Workbrew + Jamf Pro provides a powerful combination that equips IT teams with:
This integration enables centralized IT management of Homebrew, whilst ensuring a seamless experience for developers.
Whether you're managing a small team of developers or overseeing the software needs of a large organization, Workbrew and Jamf Pro help ensure that both developers and IT teams are working with the right tools in the right environment—secure, compliant, and efficient.
Get the Workbrew + Jamf Pro integration
#!/bin/bash
# Check for Homebrew in supported installation paths.
if [[ -x "/opt/homebrew/bin/brew" ]] ||
[[ -x "/usr/local/bin/brew" ]] ||
[[ -x "/home/linuxbrew/.linuxbrew/bin/brew" ]]
then
echo "Homebrew is installed."
exit 0
else
echo "Homebrew is not installed."
exit 1
fi
Developers rely on powerful package managers like Homebrew for quick installations. IT teams must have visibility into deployments and may need to enforce restrictions to ensure security and compliance. Managing software at scale for developer-centric environments is challenging.
The Workbrew + Jamf Pro integration lets IT admins enforce enterprise grade security and control, while ensuring developers have the tools they need.
Workbrew simplifies Homebrew management for enterprises, ensuring software management is secure, automated, and compliant. With Workbrew, you can install Homebrew across large fleets of macOS devices, gaining access to the most popular package manager for macOS and over 15,000 packages, with the peace of mind given by centralized management and real-time monitoring of all software installed with Homebrew.
Workbrew bridges the gap between developer flexibility and IT control, keeping software up-to-date and secure.
Jamf Pro is a popular Apple device management (MDM) solution, providing IT teams the ability to remotely manage devices, set security policies, and deploy software
Integrating Jamf Pro with Workbrew gives your organization the best of both worlds: Existing Jamf users can keep peace of mind whilst empowering their developers with best in class package management, whilst existing Workbrew users gain zero-touch deployment and automated device inventory syncing.
Workbrew + Jamf Pro provides a powerful combination that equips IT teams with:
This integration enables centralized IT management of Homebrew, whilst ensuring a seamless experience for developers.
Whether you're managing a small team of developers or overseeing the software needs of a large organization, Workbrew and Jamf Pro help ensure that both developers and IT teams are working with the right tools in the right environment—secure, compliant, and efficient.
Get the Workbrew + Jamf Pro integration
3. IT Admins have questions. We weren’t sure what to expect, but so many folks had specific implementation queries. Others were curious about what Workbrew is up to. It was a non-stop flow of awesome conversations, and we ran out of Homebrew Cheat Sheets and Implementation Guides.
4. MacAd.UK has great bean bag chairs – the Chill-Out Zone was a super comfortable place to talk about CVEs.
5. The wonderful MacAdmins Foundation offers grants for folks who want to attend but aren’t in a position to fund the trip. For those looking to attend MacAdmins PSU, their applications are open.
A big thank you to the MacAD.UK team and we’re excited to be back next year.
If you missed it, check out Brandon’s talk on Balancing the Needs of IT, Security, & Engineering Teams at Scale
3. IT Admins have questions. We weren’t sure what to expect, but so many folks had specific implementation queries. Others were curious about what Workbrew is up to. It was a non-stop flow of awesome conversations, and we ran out of Homebrew Cheat Sheets and Implementation Guides.
4. MacAD.UK has great bean bag chairs – the Chill-Out Zone was a super comfortable place to talk about CVEs.
5. The wonderful MacAdmins Foundation offers grants for folks who want to attend but aren’t in a position to fund the trip. For those looking to attend MacAdmins PSU, their applications are open.
A big thank you to the MacAD.UK team and we’re excited to be back next year.
If you missed it, check out my talk on Balancing the Needs of IT, Security, & Engineering Teams at Scale
#!/bin/bash
# Check for Homebrew in supported installation paths.
if [[ -x "/opt/homebrew/bin/brew" ]] ||
[[ -x "/usr/local/bin/brew" ]] ||
[[ -x "/home/linuxbrew/.linuxbrew/bin/brew" ]]
then
echo "Homebrew is installed."
exit 0
else
echo "Homebrew is not installed."
exit 1
fi