Fix typo in documentation chown commands

The parameters passed to chown were incorrectly specifying the
user/group delimiter as '.' instead of ':'.

Change-Id: Ic2a258771328df32f8e4ca274413d0dcaadbff43
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
This commit is contained in:
Trevor Bramwell 2018-08-31 10:25:28 -07:00
parent 485f1205a3
commit cea6505d1b
No known key found for this signature in database
GPG Key ID: A7BE1946ACC75042
1 changed files with 2 additions and 2 deletions

View File

@ -16,11 +16,11 @@ during the Nodepool setup.
$ sudo useradd --system zuul --home-dir /var/lib/zuul --create-home -g zuul
$ sudo mkdir /etc/zuul/
$ sudo mkdir /var/log/zuul/
$ sudo chown zuul.zuul /var/log/zuul/
$ sudo chown zuul:zuul /var/log/zuul/
$ sudo mkdir /var/lib/zuul/.ssh
$ sudo chmod 0700 /var/lib/zuul/.ssh
$ sudo mv nodepool_rsa /var/lib/zuul/.ssh
$ sudo chown -R zuul.zuul /var/lib/zuul/.ssh
$ sudo chown -R zuul:zuul /var/lib/zuul/.ssh
Installation
------------