x
- full supported/testedw
- full working/tested, community supportw-nt
- works no automated testsn/a
- Not applicable for this platform#585
- Link to bug(s) for implementation, fixing
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 ruby | |
require 'open-uri' | |
require 'nokogiri' | |
require 'erb' | |
if ARGV.size < 1 | |
puts "Usage: explain <COMMAND> [OPTIONS]" | |
exit 1 |
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
#!/bin/bash | |
set -e | |
REPO_DIR=~/.iam_lookup/complete-aws-iam-reference | |
REPO_URL=https://github.com/widdix/complete-aws-iam-reference | |
if [[ $1 == "update" ]];then | |
if [[ -e $REPO_DIR ]];then | |
(cd "$REPO_DIR" && git pull) | |
else |
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 | |
set -e | |
rm -f goss.json | |
# Add 100 files from etc | |
for x in `find /etc | head -100`;do goss add file "$x";done > /dev/null | |
# Add all users in /etc/passwd |