Skip to content

Instantly share code, notes, and snippets.

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
#!/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
@paulstakem
paulstakem / gist:4493430
Created January 9, 2013 14:15
Build and installation of Graphite Web, Carbon and Whisper on Centos 6.3 x86_64
### 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