This file contains hidden or 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
| locals { | |
| hostname = "foo-service" | |
| } | |
| resource "aws_route53_zone" "primary" { | |
| name = "example.com" | |
| } | |
| resource "aws_instance" "foo" { | |
| . . . |
This file contains hidden or 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 python | |
| elements = [ '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39', '40', '41', '42', '43', '44', '45', '46', '47', '48', '49', '50', '51', '52', '53', '54', '55', '56', '57', '58', '59', '60', '61', '62', '63', '64', '65', '66', '67', '68', '69', '70' ] | |
| num_elements = len(elements) | |
| combination_size=8 | |
| # | |
| # genCombinations recursive Function | |
| # | |
| def genCombinations(combination, position): |
This file contains hidden or 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 python | |
| # | |
| # Modules Import | |
| # | |
| import os, sys, shlex, subprocess | |
| # | |
| # Variables Definition | |
| # |
This file contains hidden or 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 python | |
| # | |
| # Modules Import | |
| # | |
| import mysql.connector | |
| from mysql.connector import errorcode | |
| # | |
| # Variables Definition |
This file contains hidden or 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 | |
| # | |
| # Variables Definition | |
| # | |
| BACKUPS_DIR=/var/backups/database | |
| DUMP_REFIX=mysql_dump | |
| DUMP_FILE=${BACKUPS_DIR}/${DUMP_REFIX}-$(/bin/date +%Y_%m_%d-%H_%M).sql | |
| MYSQL_USER=<superuser> | |
| MYSQL_PASSWD='<password>' |
This file contains hidden or 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
| with cd(project_path): | |
| result = sudo('git submodule status') | |
| for submodule in result.stdout.splitlines(): | |
| application = submodule.split()[1] | |
| deploy(application) |
This file contains hidden or 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
| <?php | |
| //Deploy the current version from master branch of the project | |
| $document_root = "<repository_root_folder>"; | |
| echo "Clean untracked files on server:"; | |
| $output = shell_exec("git clean -d --force $document_root 2>&1"); | |
| echo "<pre>$output</pre>"; | |
| echo "Revert modified files (not staged) on server..."; | |
| $output = shell_exec("git checkout -- $document_root 2>&1"); |
This file contains hidden or 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
| apt-get -y autoremove | |
| apt-get clean | |
| # Zero out the free space to save space in the final image: | |
| dd if=/dev/zero of=/EMPTY bs=1M | |
| rm -f /EMPTY | |
| # Removing leftover leases and persistent rules | |
| echo "cleaning up dhcp leases" | |
| rm /var/lib/dhcp/* |
This file contains hidden or 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
| # Clear yum packages | |
| yum clean all | |
| # Zero out the free space to save space in the final image: | |
| dd if=/dev/zero of=/EMPTY bs=1M | |
| rm -f /EMPTY | |
| # Removing leftover leases and persistent rules | |
| echo "cleaning up dhcp leases" | |
| rm -f /var/lib/dhclient/* |
This file contains hidden or 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 | |
| # | |
| # Commands Definition | |
| # | |
| ECHO="echo -e" | |
| TPUT_BOLD="tput bold" | |
| TPUT_RED="tput setaf 1" | |
| TPUT_OFF="tput sgr0" |
NewerOlder