summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Packham <seanpackham@gitlab.com>2016-09-27 18:30:41 +0100
committerSean Packham <seanpackham@gitlab.com>2016-09-27 18:30:41 +0100
commit1b309bd7c2d5251e8c3e2eac72e2d430178c05f0 (patch)
treeb5cfcb9bbaf3dfac93646d3e5241d289cd229085
parent7dcc10c192c1f610b1f6ff1fe96cbd864154fa7c (diff)
downloadgitlab-ce-1b309bd7c2d5251e8c3e2eac72e2d430178c05f0.tar.gz
Fix lint error
-rw-r--r--doc/university/high-availability/aws/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/university/high-availability/aws/README.md b/doc/university/high-availability/aws/README.md
index 1534a212ab7..088f1cd7290 100644
--- a/doc/university/high-availability/aws/README.md
+++ b/doc/university/high-availability/aws/README.md
@@ -340,7 +340,7 @@ add the following script to the User Data section:
runcmd:
- mkdir -p /gitlab-data
- chown ec2-user:ec2-user /gitlab-data
- - echo "$(curl -s http://169.254.169.254/latest/meta-data/placement/availability-zone).file-system-id.aws-region.amazonaws.com:/ /gitlab-data nfs defaults,vers=4.1 0 0" >> /etc/fstab
+ - echo "$(curl --silent http://169.254.169.254/latest/meta-data/placement/availability-zone).file-system-id.aws-region.amazonaws.com:/ /gitlab-data nfs defaults,vers=4.1 0 0" >> /etc/fstab
- mount -a -t nfs
- sudo gitlab-ctl reconfigure