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
@echo on | |
:: ***************************************************************************** | |
:: Author: Vadim Zenin http://vadimzenin.blogspot.com | |
:: Version: 0.90 | |
:: Date: 2012-02-07 11:22:03 | |
:: Creating VPC environment in amazon AWS for test environment | |
:: | |
:: Usage: %SCRIPTNAME% | |
:: | |
:: THE SCRIPT IS VERY OLD. PLEASE DO NOT USE IT |
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
// Jenkins pipeline example short. Jenkins 2.121.2 on Ubuntu 16.04.4 LTS | |
// Jenkinsfile-pipeline-example-short.groovy | |
pipeline { | |
agent any | |
environment { | |
MY_DOCKER_DIR = 'docker-images' | |
MY_DOCKER_EXPORT_DIR = '/tmp' | |
MY_DOCKER_IMPORT_DIR = '/mnt/data/jenkins/jenkins-agent' | |
MY_DEST_SERVER = 'server-01' |
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/sh | |
# | |
# postgresql This is the init script for starting up the PostgreSQL | |
# server. | |
# | |
# chkconfig: - 64 36 | |
# description: PostgreSQL database server. | |
# processname: postmaster | |
# pidfile="/var/run/${NAME}.pid" |