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 | |
# Bump the Play ! version | |
gsed -ri 's/2\.4(\.[0-9])+/2\.5\.4/g' project/plugins.sbt | |
# Pick the right SBT version | |
gsed -ri 's/sbt\.version=0\.13\.[0-9]/sbt\.version=0\.13\.11/g' project/build.properties | |
# Check ebean | |
grep sbt-play-ebean project/plugins.sbt |
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 | |
if [ "$(tty)" == 'not a tty' ] || [ $TERM_PROGRAM != "iTerm.app" ]; then | |
exec ssh "$@" | |
exit $? | |
fi | |
if [ $# -eq 0 ]; then | |
exec ssh "$@" | |
fi |
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
require("lsqlite3") | |
-- Igmar: Wanneer closen we dat DB object eigenlijk ? | |
db = sqlite3.open('/etc/asterisk/users.sqlite') | |
--CONSOLE = "Console/dsp" -- Console interface for demo | |
--CONSOLE = "DAHDI/1" | |
--CONSOLE = "Phone/phone0" | |
TRUNK = "DAHDI/G1" |