References:
- https://packaging.ubuntu.com/html/
- https://packaging.ubuntu.com/html/introduction-to-ubuntu-development.html
- https://packaging.ubuntu.com/html/getting-set-up.html
- Install build tools:
| # Last updated: 08/24/2916 | |
| # | |
| # Total instructions available: 18 | |
| # | |
| # https://docs.docker.com/engine/reference/builder/ | |
| # | |
| # You can use a .dockerignore file in the same context directory as | |
| # your Dockerfile to ignore files in the context before sending them | |
| # to the Docker daemon for building to speed up building. |
| #!/usr/bin/python | |
| # Copyright (c) 2018 Julio Lajara | |
| # Copyright (c) 2017 Ansible Project | |
| # GNU General Public License v2.0 (see COPYING or https://www.gnu.org/licenses/old-licenses/gpl-2.0.html) | |
| # Last Updated: 02/05/2018 Ansible Version: 2.4 | |
| # | |
| # All modules must have the following sections defined in this order: | |
| # | |
| # 1. Copyright (When adding a copyright line after completing a significant feature or rewrite, add the newer line above |
| # For a high level over see video at https://www.ansible.com/blog/how-to-extend-ansible-through-plugins | |
| # Standard base includes and define this as a metaclass of type | |
| from __future__ import (absolute_import, division, print_function) | |
| __metaclass__ = type | |
| # Important contants | |
| from ansible import constants as C | |
| # Common error handlers | |
| from ansible.errors import AnsibleError |