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
#!/usr/bin/python | |
# | |
# Requires libevent, greenlet, gevent and pyzmq. | |
# | |
# Exemplar run: | |
# | |
# $ ./poblano_backend.py | |
# GitHub handled by worker 1: OK | |
# Jenkins handled by worker 2: OK | |
# Review Board handled by worker 1: OK |
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//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>org.pure-ftpd.ftp.plist</string> | |
<key>Program</key> | |
<string>/usr/local/sbin/pure-ftpd</string> | |
<key>ProgramArguments</key> | |
<array> |
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/bash | |
mkdir -p /dev/net | |
mknod /dev/net/tun c 10 200 | |
chmod 600 /dev/net/tun |
NewerOlder