Skip to content

Commit cb5c89a

Browse files
author
Dmitriy Zaporozhets
committed
Updated with version & maintainer info
1 parent 0ae90d8 commit cb5c89a

File tree

5 files changed

+27
-4
lines changed

5 files changed

+27
-4
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
gitlab-recipes
22
==============
33

4-
GitLab recipes for setup on different platforms, update etc...
4+
GitLab recipes for setup on different platforms, update etc...
5+
6+
### Every file should have section with maintainer name & gitlab version:
7+
8+
# GITLAB
9+
# Maintainer: @randx
10+
# App Version: 2.9

config/init-gitlab

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
#! /bin/bash
2+
3+
# GITLAB
4+
# Maintainer: @randx
5+
# App Version: 2.9
6+
27
### BEGIN INIT INFO
38
# Provides: gitlab
49
# Required-Start: $local_fs $remote_fs $network $syslog redis-server
@@ -9,6 +14,7 @@
914
# Description: GitLab git repository management
1015
### END INIT INFO
1116

17+
1218
APP_ROOT="/home/gitlab/gitlab"
1319
DAEMON_OPTS="-c $APP_ROOT/config/unicorn.rb -E production -D"
1420
NAME="unicorn"

config/nginx-gitlab

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# GITLAB
2+
# Maintainer: @randx
3+
# App Version: 2.9
4+
15
upstream gitlab {
26
server unix:/home/gitlab/gitlab/tmp/sockets/gitlab.socket;
37
}

install/debian_ubuntu.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
#!/bin/sh
22

3+
# GITLAB
4+
# Maintainer: @randx
5+
# App Version: 2.9
6+
37
sudo apt-get update
48
sudo apt-get upgrade
59

6-
sudo DEBIAN_FRONTEND='noninteractive' apt-get install -y postfix-policyd-spf-python # Install postfix without prompting.
7-
sudo apt-get install -y git git-core wget curl gcc checkinstall libxml2-dev libxslt-dev sqlite3 libsqlite3-dev libcurl4-openssl-dev libreadline-gplv2-dev libc6-dev libssl-dev libmysql++-dev make build-essential zlib1g-dev libicu-dev redis-server openssh-server python-dev python-pip libyaml-dev
10+
sudo apt-get install -y git git-core wget curl gcc checkinstall libxml2-dev libxslt-dev sqlite3 libsqlite3-dev libcurl4-openssl-dev libreadline-gplv2-dev libc6-dev libssl-dev libmysql++-dev make build-essential zlib1g-dev libicu-dev redis-server openssh-server python-dev python-pip libyaml-dev postfix
811

912
wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gz
1013
tar xfvz ruby-1.9.3-p194.tar.gz

install/debian_ubuntu_aws.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/bin/sh
22

3+
# GITLAB
4+
# Maintainer: @dosire
5+
# App Version: 2.9
6+
37
# ABOUT
48
# This script performs a complete installation of Gitlab (master branch).
59
# Is can be run with one command without needing _any_ user input after that.
@@ -119,4 +123,4 @@ echo "http://`wget -qO- http://instance-data/latest/meta-data/public-hostname`/"
119123
echo ''
120124
echo 'and login with the following Email and Password:'
121125
122-
echo '5iveL!fe'
126+
echo '5iveL!fe'

0 commit comments

Comments
 (0)