• Posts Tagged ‘Apache’

    Tutorial: Redmine with Git and Gitosis on Ubuntu 11.04

    by  • April 23, 2011 • Linux, Server, Tutorials, Web • 67 Comments

    This is a tutorial for installing redmine on Ubuntu 11.04 with Git integration, managed by Gitosis and a redmine gitosis plugin. It’s based on my last tutorial about installing redmine ob Ubuntu 8.04: http://www.x2on.de/2010/10/30/tutorial-redmine-with-svn-git-and-gitosis-on-ubuntu-8-04/ 1. Install redmine Get recent version from github (currently 1.1.3)

    Read more →

    Tutorial: Redmine with SVN, Git and Gitosis on Ubuntu 8.04

    by  • October 30, 2010 • Linux, Server, Tutorials • 24 Comments

    This is a tutorial for installing redmine on Ubuntu 8.04 with SVN and Git integration (managed by Gitosis and a redmine gitosis plugin). UPDATE #1 – 2011-04-23: New Tutorial for Redmine with Git and Gitosis on Ubuntu 11.04:http://www.x2on.de/2011/04/23/tutorial-redmine-with-git-and-gitosis-on-ubuntu-11-04/ 1. Install redmine Get recent trunk version from github (currently 1.02) apt-get install git-core mkdir /var/www...

    Read more →

    Shell-Skripte in ANT-Build Datei einbinden

    by  • October 21, 2009 • Linux, Mac, Programming, Tutorials, Windows • 0 Comments

    Ein kleiner Tip für alle die in einem Projekt Apache ANT benutzen und ein Shell-Skript einbinden wollen. Hierbei gibt es eine Möglichkeit zwischen verschiedenen Betriebssystemen zu unterscheiden, und so unterschiedliche Scripte auszuführen. <target name="examplescript"> <exec dir="." executable="/bin/bash" os="Mac OS X"> <arg line="./examplescript-mac.sh" /> </exec> <exec dir="." executable="/bin/bash" os="Linux"> <arg line="./examplescript-linux.sh" /> </exec> <exec dir="."...

    Read more →