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
Param( | |
[Parameter(Mandatory=$true, Position=1)] | |
[string]$SvnFolderPath, | |
[Parameter(Mandatory=$true, Position=2)] | |
[string]$TargetFolder, | |
[Parameter(Mandatory=$true, Position=3)] | |
[string]$GitUrl | |
) | |
git svn clone --stdlayout --no-metadata -A users.txt $SvnFolderPath "$TargetFolder-tmp" |
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
2018/08/15 02:09:10 [INFO] Terraform version: 0.11.7 41e50bd32a8825a84535e353c3674af8ce799161 | |
2018/08/15 02:09:10 [INFO] Go runtime version: go1.10.1 | |
2018/08/15 02:09:10 [INFO] CLI args: []string{"/bin/terraform", "apply"} | |
2018/08/15 02:09:10 [DEBUG] Attempting to open CLI config file: /root/.terraformrc | |
2018/08/15 02:09:10 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2018/08/15 02:09:10 [INFO] CLI command args: []string{"apply"} | |
2018/08/15 02:09:10 [TRACE] module source: "../modules/one" | |
2018/08/15 02:09:10 [TRACE] module source: "../modules/two" | |
2018/08/15 02:09:10 [TRACE] module source: "../one" | |
2018/08/15 02:09:10 [INFO] command: empty terraform config, returning nil |
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 ansible-playbook | |
--- | |
- name: Test truthiness | |
hosts: localhost | |
gather_facts: False | |
vars: | |
truthy_vars: | |
# TRUE | |
- True | |
- 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 | |
# High-performance, native SSH implementation for Jenkins SSH slaves. Jenkins' | |
# standard turn-key SSH slave implementation uses an embedded, "pure Java" | |
# implementation of SSH (https://github.com/jenkinsci/trilead-ssh2). | |
# That standard implementation combines all of the convenience of a pure Java | |
# implementation with all of the "performance" of a pure Java implementation :P | |
# If your distributed build process generates large build artifacts like ISOs, | |
# VM images, Vagrant boxes, etc, then you will see a substantial benefit from |
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 | |
if ARGV.length < 2 | |
puts "usage: #{$0} databag.json new_encrypted_databag.json [encrypted_data_bag_secret]" | |
exit(1) | |
end | |
databag_file = ARGV[0] | |
out_file = ARGV[1] | |
if ARGV.length >= 3 |