Skip to content

Instantly share code, notes, and snippets.

@stuartf7
Last active December 14, 2015 00:29
Show Gist options
  • Select an option

  • Save stuartf7/4999497 to your computer and use it in GitHub Desktop.

Select an option

Save stuartf7/4999497 to your computer and use it in GitHub Desktop.

Revisions

  1. stuartf7 revised this gist May 12, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.sh
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    export TEAMCITY_DATA_PATH="/data/"
    export TEAMCITY_DATA_PATH="/data/teamcity"

    case $1 in
    start)
  2. stuartf7 revised this gist May 12, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.sh
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    export TEAMCITY_DATA_PATH="/data/.BuildServer"
    export TEAMCITY_DATA_PATH="/data/"

    case $1 in
    start)
  3. Stuart Fleming revised this gist Feb 20, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.sh
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    export TEAMCITY_DATA_PATH="/mnt/data/.BuildServer"
    export TEAMCITY_DATA_PATH="/data/.BuildServer"

    case $1 in
    start)
  4. Stuart Fleming created this gist Feb 20, 2013.
    14 changes: 14 additions & 0 deletions gistfile1.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    export TEAMCITY_DATA_PATH="/mnt/data/.BuildServer"

    case $1 in
    start)
    /var/teamcity/bin/teamcity-server.sh start
    ;;

    stop)
    /var/teamcity/bin/teamcity-server.sh stop
    ;;

    esac

    exit 0