Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| #/bin/bash | |
| #-- Script to automate https://help.github.com/articles/why-is-git-always-asking-for-my-password | |
| ## Loop over all personal gits using | |
| # for i in `ls -1`; do cd $i; bash ~/fix_github_https_repo.sh; cd ~/gits; echo "done"; done | |
| REPO_URL=`git remote -v | grep -m1 '^origin' | sed -Ene's#.*(https://[^[:space:]]*).*#\1#p'` | |
| if [ -z "$REPO_URL" ]; then | |
| echo "-- ERROR: Could not identify Repo url." |
| import boto3 | |
| import certbot.main | |
| import datetime | |
| import os | |
| import raven | |
| import subprocess | |
| def read_and_delete_file(path): | |
| with open(path, 'r') as file: | |
| contents = file.read() |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| # Description: Boxstarter Script | |
| # Author: Jess Frazelle <jess@linux.com> | |
| # Last Updated: 2017-09-11 | |
| # | |
| # Install boxstarter: | |
| # . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
| # | |
| # You might need to set: Set-ExecutionPolicy RemoteSigned | |
| # | |
| # Run this boxstarter by calling the following from an **elevated** command-prompt: |