Fix Markdown list in README

This commit is contained in:
noctux 2016-09-18 13:48:33 +02:00 committed by GitHub
parent 94b0040d30
commit a8a115aea8

View file

@ -20,22 +20,22 @@ this project was born.
As the OpenWrt community seems to have a strange affection for lua, this As the OpenWrt community seems to have a strange affection for lua, this
repository currently implements the following modules: repository currently implements the following modules:
- [copy](https://docs.ansible.com/ansible/copy_module.html) - [copy](https://docs.ansible.com/ansible/copy_module.html)
- [file](https://docs.ansible.com/ansible/file_module.html) - [file](https://docs.ansible.com/ansible/file_module.html)
- [lineinfile](https://docs.ansible.com/ansible/lineinfile_module.html) - [lineinfile](https://docs.ansible.com/ansible/lineinfile_module.html)
- opkg - opkg
- [stat](https://docs.ansible.com/ansible/stat_module.html) - [stat](https://docs.ansible.com/ansible/stat_module.html)
- ubus - ubus
- uci - uci
Copy, file, lineinfile, stat and opkg are mostly straightforward ports of the Copy, file, lineinfile, stat and opkg are mostly straightforward ports of the
official python modules included in the Ansible v2.1.1.0 release. However, there official python modules included in the Ansible v2.1.1.0 release. However, there
were some simplifications made: were some simplifications made:
- selinux file attributes are not supported - selinux file attributes are not supported
- validation commands are not supported - validation commands are not supported
- file-operations are not guaranteed to be atomic - file-operations are not guaranteed to be atomic
- permissions can only be specified in octal mode - permissions can only be specified in octal mode
- check_mode is only partly implemented - check_mode is only partly implemented
Apart from that, the modules should behave exactly like the upstream modules, Apart from that, the modules should behave exactly like the upstream modules,
making it possible to use local actions such as making it possible to use local actions such as
@ -50,8 +50,8 @@ library are required.
If you want to use the file related modules (copy, file, lineinfile, stat), the If you want to use the file related modules (copy, file, lineinfile, stat), the
following opkg packages are required, which are not part of the standard images: following opkg packages are required, which are not part of the standard images:
- luaposix - luaposix
- coreutils-sha1sum - coreutils-sha1sum
However, as the opkg-module is independent from those packages, you can install However, as the opkg-module is independent from those packages, you can install
them in your playbook like this: them in your playbook like this:
@ -92,11 +92,11 @@ Apart form the `./library/` folder, you might want to copy the provided `ansible
# Documentation # Documentation
For the following modules, please refer to the upstream documentation For the following modules, please refer to the upstream documentation
- [copy](https://docs.ansible.com/ansible/copy_module.html) - [copy](https://docs.ansible.com/ansible/copy_module.html)
- [file](https://docs.ansible.com/ansible/file_module.html) - [file](https://docs.ansible.com/ansible/file_module.html)
- [lineinfile](https://docs.ansible.com/ansible/lineinfile_module.html) - [lineinfile](https://docs.ansible.com/ansible/lineinfile_module.html)
- [opkg](https://docs.ansible.com/ansible/opkg_module.html) - [opkg](https://docs.ansible.com/ansible/opkg_module.html)
- [stat](https://docs.ansible.com/ansible/stat_module.html) - [stat](https://docs.ansible.com/ansible/stat_module.html)
## ubus module ## ubus module