Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed some typos #199

Merged
merged 1 commit into from Mar 23, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions install/centos/README.md
Expand Up @@ -283,7 +283,7 @@ Create a new user and database for GitLab:
# Create the GitLab production database
CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;

# Grant the GitLab user necessary permissopns on the table.
# Grant the GitLab user necessary permissions on the table.
GRANT SELECT, LOCK TABLES, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production`.* TO 'git'@'localhost';

# Quit the database session
Expand Down Expand Up @@ -448,7 +448,7 @@ Make GitLab start on boot:

### Set up logrotate

sudo cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab
cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab

### Check Application Status

Expand All @@ -460,7 +460,7 @@ Check if GitLab and its environment are configured correctly:

service gitlab start

## Compile assets
### Compile assets

sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production

Expand Down