Merge pull request #7 from panchoh/fix-missing-py-suffix

README.md: Add missing .py suffix in setup instructions and misc fixes
pull/8/head
kewl 2018-05-24 08:06:01 +01:00 committed by GitHub
commit 9636c0b1ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -30,17 +30,17 @@ makepkg will be used if no helper was found or if it's specified explicitly.
The [aur-ansible-git](https://aur.archlinux.org/packages/ansible-aur-git) package is available in the AUR.
Note the module is installed in `/usr/share/ansible/plugins/modules` which is one of the default module library paths.
### Manual installation
### Manual installation
1. Clone the *ansible-aur* repository in your playbook custom-module directory:
```
mkdir --parents library
mkdir library
cd library
git clone git@github.com:kewlfft/ansible-aur.git
git clone https://github.com/kewlfft/ansible-aur.git
```
2. Link the script `library/ansible-aur/aur.py` to `library/aur`:
2. Link the script `library/ansible-aur/aur.py` to `library/aur.py`:
```
ln --symbolic ansible-aur/aur.py aur
ln --symbolic ansible-aur/aur.py aur.py
```
## Usage