Skip to content

Instantly share code, notes, and snippets.

View kharnam's full-sized avatar

Sergey Kharnam kharnam

View GitHub Profile
@kharnam
kharnam / ansible-summary.md
Created August 10, 2018 00:08 — forked from andreicristianpetcu/ansible-summary.md
This is an ANSIBLE Cheat Sheet from Jon Warbrick

An Ansible summary

Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)

Configuration file

intro_configuration.html

First one found from of

@kharnam
kharnam / brew-perms.sh
Last active September 13, 2018 02:42 — forked from jaibeee/brew-perms.sh
Configure homebrew permissions to allow multiple users on MAC OSX. Any user from the admin group will be able to manage the homebrew and cask installation on the machine.
#!/bin/sh
# Configure homebrew permissions to allow multiple users on MAC OSX.
# Any user from the admin group will be able to manage the homebrew and cask installation on the machine.
# Execute under NON-ROOT user!
# allow admins to manage homebrew's local install directory
sudo chown -R $(whoami) $(brew --prefix)/*
sudo chmod -R g+w $(brew --prefix)/*
# Might be an optional!