generic cloud init help and docs
treats user data and cloud init as cloud-init
generic cloud init help and docs
treats user data and cloud init as cloud-init
"C:\Program Files (x86)\GnuPG\bin\gpg-connect-agent.exe" /bye
This will only load the agent at Startup, and you won't be bothered by any UI or tray agent.%userprofile%/.ssh
directory (Windows dir is important for performance).auto_auth { | |
method "approle" { | |
config = { | |
role_id_file_path = ".role-id" | |
secret_id_file_path = ".secret-id" | |
} | |
} | |
sink "file" { | |
config = { |
pipeline { | |
agent any | |
environment { | |
GIT_REPO = "https://github.com/GuyBarros/terraform-azurerm-demostack" | |
TFE_NAME = "app.terraform.io" | |
TFE_URL = "https://app.terraform.io" | |
TFE_ORGANIZATION = "emea-se-playground-2019" | |
TFE_API_URL = "${TFE_URL}/api/v2" |
@binkmail.com | |
@bobmail.info | |
@chammy.info | |
@devnullmail.com | |
@letthemeatspam.com | |
@mailinater.com | |
@mailinator.net | |
@mailinator2.com | |
@notmailinator.com | |
@reallymymail.com |
# This class is meant to solve the problem of synchronizing pe_repo agent | |
# packages to compile masters when there is no internet access. | |
# | |
# This profile assumes that the Puppet MoM (master of masters) is able to reach | |
# the internet to download the needed packages, or they've been sneaker-netted to the MoM. | |
# | |
class pe_repo_packages { | |
# Generate an array of puppet-agent pe_repo package names. | |
# 1. Searches PuppetDB for all pe_repo::platform classess added to the MoM. |
<?xml version="1.0"?> | |
<profile name="Original Prusa i3 MK2" version="2017-07-16 09:26:29" app="S3D-Software 3.1.1"> | |
<baseProfile>Default</baseProfile> | |
<printMaterial>PLA</printMaterial> | |
<printQuality>Normal 0.2</printQuality> | |
<printExtruders></printExtruders> | |
<extruder name="Primary Extruder"> | |
<toolheadNumber>0</toolheadNumber> | |
<diameter>0.4</diameter> | |
<autoWidth>0</autoWidth> |
#!/bin/bash | |
OLDIFS=$IFS | |
export IFS=$'\n' | |
# Find all boxes which have updates | |
AVAILABLE_UPDATES=$(vagrant box outdated --global | grep outdated | tr -d "*'" | cut -d ' ' -f 2 2>/dev/null) | |
if [[ ${#AVAILABLE_UPDATES[@]} -ne 0 ]]; then |
#!/opt/puppetlabs/puppet/bin/ruby | |
require 'rugged' | |
require 'octokit' | |
require 'yaml' | |
# needs refactoring for code manager | |
# https://github.com/puppetlabs/control-repo/blob/production/scripts/code_manager_config_version.rb | |
environmentpath = ARGV[0] | |
environment = ARGV[1] |