diff options
author | Daniel Widerin <daniel@widerin.net> | 2014-09-25 15:23:40 +0000 |
---|---|---|
committer | Daniel Widerin <daniel@widerin.net> | 2014-09-25 15:23:40 +0000 |
commit | d5dc171cb7e04a1a513dca044578e95d52706a84 (patch) | |
tree | 79dc78221b9f3535ff620948f5ccaf1800cedaf4 /doc/update | |
parent | b874cb21ebf9653a0a15a43838bbb2ac5d37aaff (diff) | |
download | gitlab-ce-d5dc171cb7e04a1a513dca044578e95d52706a84.tar.gz |
Path on ubuntu is different
Diffstat (limited to 'doc/update')
-rw-r--r-- | doc/update/7.2-to-7.3.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/update/7.2-to-7.3.md b/doc/update/7.2-to-7.3.md index a763835e165..ceb9588f758 100644 --- a/doc/update/7.2-to-7.3.md +++ b/doc/update/7.2-to-7.3.md @@ -73,7 +73,7 @@ sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab # Enable Redis socket for default Debian / Ubuntu path echo 'unixsocket /var/run/redis/redis.sock' | sudo tee -a /etc/redis/redis.conf # Be sure redis group can write to the socket, enable only if supported (>= redis 2.4.0). - sed '/# unixsocketperm/ s/^# unixsocketperm.*/unixsocketperm 0775/' /etc/redis.conf | sudo tee -a /etc/redis/redis.conf + sed '/# unixsocketperm/ s/^# unixsocketperm.*/unixsocketperm 0775/' /etc/redis/redis.conf | sudo tee -a /etc/redis/redis.conf echo ' 0775' | sudo tee -a /etc/redis/redis.conf # Activate the changes to redis.conf sudo service redis-server restart |