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: http://raspberryperl.com/CouchDB/installCouchDB-1.6.1-on-Pi-2-jessie.txt | |
================================================================================ | |
# Install CouchDB Database on Pi-2 Running Raspbian Jessie | |
# These instructions are based on those found on this web page: | |
( http://jeeonthepi.blogspot.com/2015/09/installing-couchdb-161-on-raspberry-pi.html ) | |
========================================================================================== | |
########################################################################################## |
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
var include = (function () | |
{ | |
var knownPaths = {}; | |
return ( | |
function ( path ) | |
{ | |
if ( knownPaths[ path ] ) return; | |
knownPaths[ path ] = true; |
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
var factory = function ( process ) | |
{ | |
var currentReceiverFun = []; | |
var receiverFun = function ( data ) | |
{ | |
if ( currentReceiverFun.length > 0 ) | |
{ | |
var fn = currentReceiverFun.unshift(); | |
fn( data ); |
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 | |
echo "$SSH_ORIGINAL_COMMAND" >> /home/git/ssh.log | |
[[ $SSH_ORIGINAL_COMMAND =~ git-receive-pack ]] && eval "$SSH_ORIGINAL_COMMAND" && exit 0 | |
[[ $SSH_ORIGINAL_COMMAND =~ git-upload-pack ]] && eval "$SSH_ORIGINAL_COMMAND" && exit 0 | |
[[ $SSH_ORIGINAL_COMMAND =~ git-upload-archive ]] && eval "$SSH_ORIGINAL_COMMAND" && exit 0 | |
echo "NA" >> /home/git/ssh.log |
OlderNewer