This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://support.google.com/chrome/a/answer/9301891?hl=en&ref_topic=9301744 | |
### Enrollment | |
mkdir -p /Library/Google/Chrome/ | |
Download Enrollment Token | |
stat /Library/Google/Chrome/CloudManagementEnrollmentToken | |
Jamf: https://support.google.com/chrome/a/answer/9771882 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
export AWS_REGION=eu-west-2 | |
# VPCs | |
echo "### VPCs" | |
aws ec2 describe-vpcs --region $AWS_REGION | jq -r '.Vpcs[] | "\(.VpcId) - \(.CidrBlock) - \(.IsDefault)"' | sort | |
echo "" | |
# Subnets | |
echo "### Subnets" | |
aws ec2 describe-subnets --region $AWS_REGION | jq -r '.Subnets[] | "\(.SubnetId) - \(.CidrBlock) - \(.AvailabilityZone)"' | sort |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Install pre-requists | |
yum install gcc zlib-devel curl curl-devel openssl rpm-build gcc-c++ rpm-build python python-ldap python-memcached python-sqlite2 pycairo python-twisted Django django-tagging bitmap bitmap-fonts python-devel glibc-devel gcc-c++ openssl-devel python-zope-interface httpd memcached mod_wsgi python-setuptools | |
### Setup rpm build folders | |
rpmdev-setuptree | |
### Clone GIT project | |
git clone https://github.com/dcarley/graphite-rpms.git | |
### Grab the sources from github |