Change formatting of notes in README

pull/46/head
Christian Kotte 2020-09-24 12:34:55 +02:00
parent 71c32ac3f5
commit e1a11c703b
No known key found for this signature in database
GPG Key ID: 6E24DDCC81A95734
1 changed files with 5 additions and 3 deletions

View File

@ -31,7 +31,8 @@ The following helpers are supported and automatically selected, if present, in t
## Installing ## Installing
### AUR package ### AUR package
The [ansible-aur-git](https://aur.archlinux.org/packages/ansible-aur-git) package is available in the AUR. The [ansible-aur-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.
Note: The module is installed in `/usr/share/ansible/plugins/modules` which is one of the default module library paths.
### Manual installation ### Manual installation
Just clone the *ansible-aur* repository into your user custom-module directory: Just clone the *ansible-aur* repository into your user custom-module directory:
@ -45,7 +46,7 @@ git clone https://github.com/kewlfft/ansible-aur.git ~/.ansible/plugins/modules/
ansible-galaxy install kewlfft.aur ansible-galaxy install kewlfft.aur
``` ```
Note that if this module is installed from Ansible Galaxy, you will need to list it explicitly in your playbook: Note: If this module is installed from Ansible Galaxy, you will need to list it explicitly in your playbook:
``` ```
# playbook.yml # playbook.yml
- hosts: localhost - hosts: localhost
@ -107,7 +108,8 @@ Use it in a task, as in the following examples:
- package_name_1 - package_name_1
- package_name_2 - package_name_2
# Upgrade the system using yay, only act on AUR packages, note that dependency resolving will still include repository packages # Upgrade the system using yay, only act on AUR packages.
# Note: Dependency resolving will still include repository packages.
- aur: upgrade=yes use=yay aur_only=yes - aur: upgrade=yes use=yay aur_only=yes
# Install gnome-shell-extension-caffeine-git using pikaur and a local PKGBUILD. # Install gnome-shell-extension-caffeine-git using pikaur and a local PKGBUILD.