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 | |
# | |
# generate a Markdown version of a word document. Goes in separate folder, since | |
# images are extracted and converted as well (separate folder avoids naming clashes). | |
# | |
# REQUIREMENTS: pandoc | |
# | |
# | |
# with pandoc | |
# --extract-media=[media folder] |
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
# many options here | |
mydestination = localhost.localdomain, localhost | |
recipient_delimiter = + | |
transport_maps = hash:/etc/postfix/transport | |
virtual_mailbox_domains = example.com | |
virtual_mailbox_maps = pgsql:/etc/postfix/pg-aliases.cf |
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
#### DOWNLOADS... | |
#-------------------------------------------------- | |
# Install Dependencies | |
#-------------------------------------------------- | |
echo -e "\n---- Install tool packages ----" | |
sudo apt-get install wget subversion git bzr bzrtools python-pip -y | |
echo -e "\n---- Install and Upgrade pip and virtualenv ----" | |
sudo apt-get install python-dev build-essential -y |
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 | |
################################################################################ | |
# Script for Installation: ODOO Saas4/Trunk server on Ubuntu 14.04 LTS | |
# Author: André Schenkels, ICTSTUDIO 2014 | |
#------------------------------------------------------------------------------- | |
# | |
# This script will install ODOO Server on | |
# clean Ubuntu 14.04 Server | |
#------------------------------------------------------------------------------- | |
# USAGE: |
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
#### DOWNLOADS... | |
### PACKAGES | |
# apt-get update | |
# apt-get upgrade -y | |
apt-get install -y git python-pip htop postgresql sudo moreutils | |
apt-get install -y emacs23-nox | |
### SOURCE | |
cd /usr/local/src/ |
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
#### DOWNLOADS... | |
### PACKAGES | |
apt-get update | |
apt-get upgrade -y | |
apt-get install -y git python-pip htop postgresql sudo moreutils | |
apt-get install -y emacs23-nox | |
### SOURCE | |
cd /usr/local/src/ |