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/sh | |
| DEBMLOG=/pool/debmirror/debmirror.log | |
| MIRRORDIR=/pool/debmirror | |
| BANDWIDTH=500 | |
| if test -s $DEBMLOG | |
| then | |
| test -f $DEBMLOG.3.gz && mv $DEBMLOG.3.gz $DEBMLOG.4.gz | |
| test -f $DEBMLOG.2.gz && mv $DEBMLOG.2.gz $DEBMLOG.3.gz |
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 | |
| # Inspired by http://verbally.flimzy.com/install-couchdb-1-6-1-debian-8-2-jessie/ | |
| # Erlang | |
| echo -e "deb http://packages.erlang-solutions.com/debian jessie contrib" | sudo tee /etc/apt/sources.list.d/erlang-solutions.list | |
| wget -qO - http://packages.erlang-solutions.com/debian/erlang_solutions.asc | sudo apt-key add - | |
| # Update packages | |
| sudo apt-get update |
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
| curl -s https://api.github.com/orgs/PrestaShop/repos | ruby -rjson -e 'JSON.load(STDIN.read).each {|repo| %x[git clone #{repo["ssh_url"]} --recursive]}' |
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
| curl -s https://api.github.com/orgs/[Insert Organization]/repos?per_page=500 | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["ssh_url"]} ]}' |
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
| # Installer Script to take a stock Centos 6.5 to a FreePBX Distro 5.211.65 release. | |
| # Once completed you can use the upgrade scripts for version track 5.211.65 | |
| # To keep your system updated. | |
| # Copyright 2013 Schmooze Com, Inc. | |
| # This script is not to be copied for other use. | |
| # This script and the finished product that is installed carries NO WARRANTY and is | |
| # used to get your FreePBX system setup and installed. The installed product is released |
NewerOlder