bash <(curl -s https://gist.githubusercontent.com/vjm/fea77232e2bd6bb49f24/raw/jenkins-setup.sh)
bash <(curl -s https://gist.githubusercontent.com/vjm/fea77232e2bd6bb49f24/raw/jenkins-update.sh)
bash <(curl -s https://gist.githubusercontent.com/vjm/fea77232e2bd6bb49f24/raw/elk-setup.sh)
bash <(curl -s https://gist.githubusercontent.com/vjm/fea77232e2bd6bb49f24/raw/elk-update.sh)
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
http://www.devopsschool.com/tutorial/aws/ | |
https://www.youtube.com/watch?v=uJssXPyMf0s&list=PLxzKY3wu0_FKasqIn1MdmhbT1y4aLqNUO | |
https://hortonworks.com/blog/5-ways-make-hive-queries-run-faster/ | |
https://www.youtube.com/watch?v=wTK2CKth3DE (HTTP WebServer Setup) | |
https://linuxacademy.com/howtoguides/posts/show/topic/14209-automating-aws-with-python-and-boto3 |
1 . goto beyond compare
folder
cd "/Applications/Beyond Compare.app/Contents/MacOS/"
2 . rename BCompare
to BCompare.real
mv BCompare BCompare.real
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 bash | |
# https://www.getopenerp.com/install-odoo-10-on-ubuntu-16-04/ | |
# Update & upgrade distro status | |
sudo apt-get update -s | |
sudo apt-get upgrade -s | |
# Install dev deps | |
sudo apt-get install -s git make gcc curl poppler-utils mc bzr lptools antiword | |
sudo apt-get install -s postgresql-client postgresql-client-common |
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
key gen : NAVN-AUQL-LP2V-3GAJ | |
request code : | |
o3oHEuwvhh7v+A6TLNtma5KLZ55NHaj+RM9q/Th9FzsBJuwRWIf30ZqRFzhaHdPKyX8wMH+IENxrzetMa1egQLU11okKTpWJnkpBPJ7mpzRYF6pntD81ffxXuOZDuhuUruvGZNRtwJVpvckuYpH1BJgDP+xfprftjSGjxpOzyyNXu14gXEdWpsj4Z616WNfaPqwXcEIHKx4Xw64Bb6oT6NeT22SuWlKX7bLCU7jStjFPoziw | |
activation code: | |
IaBiNBLlJi40BYfmC8+bt2+y6fEBCLEPS9sngItbIsH+w/akZGWssMqLCxNkF/eXpoKgIJ6DH4KNoxhtR1PToWWw863yInFTMbv4WBnwxEN3hemyvxqTHLda6oskxFH3tg+qkEFAfOC7FalnFn/J+2lg71GQssZsKMxHn+JonsC+K3al2IU4lNga7sFE41La58NL/lZh2VidNwp1fAAFIadtjwLtvYaRJbbjdxOW9PGPbAJTEvQb2UnMyeyIdDWx9m1b232rAKMSI5fqkO9RLu48FkadwAZA0QrvZ1FYKIwKn+9g6r0lmNfTOUcRIAR2cEV/jQmz9khvd+V81+RGxw== |
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 | |
#Configuring postfix to use aws ses as a gateway. | |
#https://gist.github.com/JohnMorales/d554e227146735217536462141fc6898 | |
#update via `gist -u d554e227146735217536462141fc6898 config_mail.sh` | |
# Configuring postfix. | |
if [ -z "$AWS_ACCESS_KEY_ID" ]; then | |
echo "Must have AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY set" | |
exit 1 | |
fi |
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
{ | |
"AWSTemplateFormatVersion" : "2010-09-09", | |
"Description" : "Mail server for receiving", | |
"Parameters" : { | |
"MailServerDomain" : { | |
"Type" : "String", | |
"Default" : "mail.example.com", | |
"Description" : "mail server domain" | |
}, |
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
# | |
# According to AWS Docs - http://docs.aws.amazon.com/ses/latest/DeveloperGuide/postfix.html | |
# | |
# Rewrites all sender addresses to a single canonical ses verified address. | |
# | |
# Expects a vars files at ../vars/PostfixSES-vars.yml with the following variables: | |
# - ses_host: email-smtp.us-west-x.amazonaws.com | |
# - ses_port: 587 | |
# - ses_username: ses-smtp-username | |
# - ses_password: ses-smtp-password |
OlderNewer