Documentation and CLI command description fixed

Change-Id: I6a4cf58bfd5250e44363cd4a6895bcc24ea5552a
This commit is contained in:
Alexander Kislitsky 2016-09-22 16:29:43 +03:00 committed by Dmitry Ukov
parent 8b6046f787
commit 910b4ccf85
2 changed files with 5 additions and 5 deletions

View File

@ -8,12 +8,12 @@ Deployed Fuel 9.0 (Mitaka) Master Node
Execute following commands on Fuel Master node
```
# yum install git python-pip
# git clone https://github.com/dukov/fuel-external-git
# cd fuel-external-git
# git clone https://github.com/openstack/fuel-nailgun-extension-iac
# cd fuel-nailgun-extension-iac
# pip install -r requirements.txt
# python setup.py install
# nailgun_syncdb
# service nailgun reload
# systemctl restart nailgun.service
```
### How to Use
@ -48,7 +48,7 @@ fuel2 gitrepo create --env 1 --name oscnf1 --url git@github.com:dukov/oscnf.git
```
fuel2 gitrepo init [-h] --repo REPO
--repo REPO Repo ID to delete
--repo REPO Repo ID to init
```
For example:
```

View File

@ -249,7 +249,7 @@ class InitRepo(command.Command):
parser = super(InitRepo, self).get_parser(prog_name)
parser.add_argument('--repo',
type=int,
help='Repo ID to delete',
help='Repo ID to init',
required=True)
return parser