Skip to content

Commit faa6a34

Browse files
committed
Bump gitlab-shell in 5.4 and 6.2
1 parent 88c1590 commit faa6a34

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

doc/update/5.3-to-5.4.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production
2222
```bash
2323
cd /home/git/gitlab
2424
sudo -u git -H git fetch
25-
sudo -u git -H git checkout 5-4-stable
25+
sudo -u git -H git checkout 5-4-stable # Latest version of 5-4-stable addresses CVE-2013-4489
2626
```
2727

2828
### 3. Update gitlab-shell
2929

3030
```bash
3131
cd /home/git/gitlab-shell
3232
sudo -u git -H git fetch
33-
sudo -u git -H git checkout v1.5.0
33+
sudo -u git -H git checkout v1.7.4 # Addresses CVE-2013-4490
3434
```
3535

3636
### 4. Install libs, migrations, etc.

doc/update/6.1-to-6.2.md

+15-7
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,25 @@ sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production
2424
```bash
2525
cd /home/git/gitlab
2626
sudo -u git -H git fetch
27-
sudo -u git -H git checkout 6-2-stable
27+
sudo -u git -H git checkout 6-2-stable # Latest version of 6-2-stable addresses CVE-2013-4489
2828
```
2929

30-
### 3. Install additional packages
30+
### 3. Update gitlab-shell
31+
32+
```bash
33+
cd /home/git/gitlab-shell
34+
sudo -u git -H git fetch
35+
sudo -u git -H git checkout v1.7.4 # Addresses CVE-2013-4490
36+
```
37+
38+
### 4. Install additional packages
3139

3240
```bash
3341
# Add support for lograte for better log file handling
3442
sudo apt-get install logrotate
3543
```
3644

37-
### 4. Install libs, migrations, etc.
45+
### 5. Install libs, migrations, etc.
3846

3947
```bash
4048
cd /home/git/gitlab
@@ -52,7 +60,7 @@ sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
5260
sudo -u git -H bundle exec rake cache:clear RAILS_ENV=production
5361
```
5462

55-
### 5. Update config files
63+
### 6. Update config files
5664

5765
TIP: to see what changed in gitlab.yml.example in this release use next command:
5866

@@ -74,20 +82,20 @@ sudo -u git -H cp config/initializers/rack_attack.rb.example config/initializers
7482
sudo cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab
7583
```
7684

77-
### 6. Update Init script
85+
### 7. Update Init script
7886

7987
```bash
8088
sudo rm /etc/init.d/gitlab
8189
sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/6-2-stable/lib/support/init.d/gitlab
8290
sudo chmod +x /etc/init.d/gitlab
8391
```
8492

85-
### 7. Start application
93+
### 8. Start application
8694

8795
sudo service gitlab start
8896
sudo service nginx restart
8997

90-
### 8. Check application status
98+
### 9. Check application status
9199

92100
Check if GitLab and its environment are configured correctly:
93101

0 commit comments

Comments
 (0)