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
from fabric.api import * | |
import time | |
import subprocess | |
import os | |
# IMPORTANT: Set the following variables to the correct path | |
# ---------------------------------- | |
FSDIR=os.path.expanduser('~/usr/sinergiafs') | |
UPAXOSDIR=os.path.expanduser('~/usr/Paxos-trunk') | |
ZKHOST='localhost:2181' |
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 | |
# root qdisc handle | |
r_handle=1 | |
# netem qdisc handle | |
n_handle=2 | |
interface= | |
delay= | |
dstip= | |
qdpresent= |