They should work. Works for all cores of your host system. Also you can download ESXi from here.
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
sudo apt-get install postgresql-9.6 postgresql-server-dev-9.6 postgresql-contrib-9.6 -y | |
sudo su - postgres -c "psql template1 -p 5433 -c 'CREATE EXTENSION IF NOT EXISTS hstore;'" | |
sudo su - postgres -c "psql template1 -p 5433 -c 'CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";'" | |
sudo systemctl stop postgresql | |
sudo su - postgres -c '/usr/lib/postgresql/9.6/bin/pg_upgrade -b /usr/lib/postgresql/9.3/bin -B /usr/lib/postgresql/9.6/bin \ | |
-d /var/lib/postgresql/9.3/main/ -D /var/lib/postgresql/9.6/main/ \ | |
-O "-c config_file=/etc/postgresql/9.6/main/postgresql.conf" -o "-c config_file=/etc/postgresql/9.3/main/postgresql.conf" --link' | |
sudo apt-get remove postgresql-9.3 -y |
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
[Unit] | |
Description=Consul service discovery agent | |
Requires=network-online.target | |
After=network.target | |
[Service] | |
User=consul | |
Group=consul | |
PIDFile=/run/consul/consul.pid | |
Restart=on-failure |
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
@contextlib.contextmanager | |
def multiple_mocks(mock_specs): | |
""" | |
`mock_specs` is a dict of mock target name => mock patch kwargs | |
Example usage: | |
with multiple_mocks( | |
{'os.path.exists': {'side_effect': mock_path_exists}, | |
'subprocess.Popen': {}, |
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 | |
# | |
# Copyright (c) 2013-2014 Bryan Drewery <[email protected]> | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions | |
# are met: | |
# 1. Redistributions of source code must retain the above copyright | |
# notice, this list of conditions and the following disclaimer. |
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
import eventlet | |
eventlet.monkey_patch() | |
from eventlet.green import zmq | |
from eventlet.event import Event | |
import inspect, time | |
from marshal import dumps, loads | |
from time import time as unixtime | |
# http://anthon.home.xs4all.nl/Python/ordereddict/ |
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
==> Downloading http://sourceforge.net/projects/savonet/files/liquidsoap/1.0.0/liquidsoap-1.0.0.tar.bz2 | |
Already downloaded: /Library/Caches/Homebrew/liquidsoap-1.0.0-macosx-lion.tar.bz2 | |
/usr/bin/tar xf /Library/Caches/Homebrew/liquidsoap-1.0.0-macosx-lion.tar.bz2 | |
Liquidsoap==> ./configure --prefix=/usr/local/Cellar/liquidsoap/1.0.0-macosx-lion --with-user=test --with-group=staff --with-default-font=/Library/Fonts/Verdana.ttf --disable-ldconf | |
./configure --prefix=/usr/local/Cellar/liquidsoap/1.0.0-macosx-lion --with-user=test --with-group=staff --with-default-font=/Library/Fonts/Verdana.ttf --disable-ldconf | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking for GNU make... make | |
checking whether user test exists... ok | |
checking if user test belongs to group staff... ok | |
checking for gcc... /usr/bin/clang |
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
import sys | |
import pika | |
import time | |
pika.log.setup(color=True) | |
connection = None | |
channel = None | |
# Import all adapters for easier experimentation |
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
require 'formula' | |
class Liquidsoap < Formula | |
url 'http://sourceforge.net/projects/savonet/files/liquidsoap/1.0.0/liquidsoap-1.0.0-full.tar.bz2' | |
homepage 'http://savonet.sf.net/' | |
md5 'e379caaf68b1141b0b34bdb3db14ab69' | |
version '1.0.0' | |
depends_on 'objective-caml' => :build | |
depends_on 'ocaml-findlib' => :build |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" | |
"http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.rabbitmq</string> | |
<key>Program</key> | |
<string>/usr/local/sbin/rabbitmq-server</string> | |
<key>RunAtLoad</key> |
NewerOlder