from contextlib import contextmanager
from shutil import copy
from os import getcwd
@contextmanager
def new_log_file(name):
try:
logname = name
f = open(logname, "w")
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
<powershell> | |
winrm quickconfig -q | |
winrm set winrm/config/winrs '@{MaxMemoryPerShellMB="300"}' | |
winrm set winrm/config '@{MaxTimeoutms="1800000"}' | |
winrm set winrm/config/service '@{AllowUnencrypted="true"}' | |
winrm set winrm/config/service/auth '@{Basic="true"}' | |
netsh advfirewall firewall add rule name="WinRM 5985" protocol=TCP dir=in localport=5985 action=allow | |
netsh advfirewall firewall add rule name="WinRM 5986" protocol=TCP dir=in localport=5986 action=allow |
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 python2 | |
import botocore.session | |
from datetime import datetime, tzinfo, timedelta | |
import json | |
from os import environ | |
#change region to match desired region | |
region = 'us-east-1' | |
class SimpleUtc(tzinfo): |
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
cat python dog cat python python | |
dog fish lizard bird cat | |
python cats fish | |
python dogs |
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
FROM python:3.8-alpine AS builder | |
WORKDIR /app | |
ARG BUILD_DEPS="build-base gcc libffi-dev openssl-dev" | |
RUN apk add --no-cache ${BUILD_DEPS} \ | |
&& python -m venv .venv \ | |
&& .venv/bin/pip install --no-cache-dir -U pip setuptools | |
RUN .venv/bin/pip install --no-cache-dir aws-sam-cli \ |
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
2020/03/23 22:42:49 [INFO] Packer version: 1.5.4 [go1.13.8 darwin amd64] | |
2020/03/23 22:42:49 Checking 'PACKER_CONFIG' for a config file path | |
2020/03/23 22:42:49 'PACKER_CONFIG' not set; checking the default config file path | |
2020/03/23 22:42:49 Attempting to open config file: /Users/<my user>/.packerconfig | |
2020/03/23 22:42:49 [WARN] Config file doesn't exist: /Users/<my user>/.packerconfig | |
2020/03/23 22:42:49 Setting cache directory: /Users/<my user>/projects/common-libs/packer-lw-ubuntu1604/packer_cache | |
2020/03/23 22:42:49 Creating plugin client for path: /usr/local/bin/packer | |
2020/03/23 22:42:49 Starting plugin: /usr/local/bin/packer []string{"/usr/local/bin/packer", "plugin", "packer-builder-amazon-ebs"} | |
2020/03/23 22:42:49 Waiting for RPC address for: /usr/local/bin/packer | |
2020/03/23 22:42:49 packer-builder-amazon-ebs plugin: [INFO] Packer version: 1.5.4 [go1.13.8 darwin amd64] |
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
# variables.pkr.hcl | |
variable ami_name { | |
type = string | |
default = "my-ami" | |
} | |
variable ami_owner { | |
type = list(string) | |
default = [ |
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
{ | |
"a": { | |
"v": 1 | |
}, | |
"b": { | |
"v": 2 | |
}, | |
"c": { | |
"v": 3 | |
} |
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
# [AWS Docs](https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/application-consistent-snapshots-creating-commands.html#application-cosistent-snapshots-cli) | |
#https://docs.aws.amazon.com/systems-manager/latest/userguide/samples/CreateVssSnapshotAdvancedScript.zip | |
function Freeze-Instance { | |
param( | |
[string]$InstanceId, | |
[string[]]$Devices, | |
[string[]]$Volumes | |
) | |
$DevicesString = $Devices -join ',' | |
$VolumesString = $Volumes -join ',' |
load more
javascript:Array.from(document.getElementsByClassName("ajax-pagination-btn")).forEach(l => l.click());
show hidden/resolved
javascript:Array.from(document.getElementsByClassName("Details-content--closed")).forEach(l => l.click());
OlderNewer