-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from ansiblebit/develop
2.16.4
- Loading branch information
Showing
14 changed files
with
185 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
# file: wkhtmltopdf/tasks/package/debug.yml | ||
# | ||
# debug tasks. | ||
# | ||
|
||
- name: debug package variables | ||
debug: | ||
var="{{ item }}" | ||
when: "{{ item }} is defined" | ||
with_items: | ||
- wkhtmltopdf_package | ||
- wkhtmltopdf_package_download_url |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
# file: wkhtmltopdf/tasks/package/validation.yml | ||
# | ||
# validation tasks. | ||
# | ||
|
||
- name: package | ensure wkhtmltopdf_installation package is possible for wkhtmltopdf_version | ||
fail: | ||
msg="wkhtmltopdf_installation package only possible on 0.12.2 and 0.12.1" | ||
when: wkhtmltopdf_version != '0.12.2' and wkhtmltopdf_version != '0.12.1' | ||
|
||
- name: package | ensure wkhtmltopdf_installation package is possible for distribution version | ||
fail: | ||
msg="wkhtmltopdf_installation package only possible on ubuntu/trusty+precise or debian/wheezy" | ||
when: wkhtmltopdf_installation == 'package' and ansible_distribution_release not in ['precise', 'trusty', 'wheezy' ] | ||
|
||
- name: build | ensure build mandatory variables are set | ||
fail: | ||
msg="{{ item }} is a mandatory variable" | ||
when: "{{ item }} is not defined" | ||
with_items: | ||
- wkhtmltopdf_package | ||
- wkhtmltopdf_package_download_url |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
# file: wkhtmltopdf/tasks/build/debug.yml | ||
# | ||
# debug tasks. | ||
# | ||
|
||
- name: debug build variables | ||
debug: | ||
var="{{ item }}" | ||
when: "{{ item }} is defined" | ||
with_items: | ||
- wkhtmltopdf_architecture | ||
- wkhtmltopdf_build | ||
- wkhtmltopdf_build_args | ||
- wkhtmltopdf_chroot_args | ||
- wkhtmltopdf_default_version | ||
- wkhtmltopdf_dir_chroot | ||
- wkhtmltopdf_dir_install | ||
- wkhtmltopdf_dir_source | ||
- wkhtmltopdf_dir_source_version | ||
- wkhtmltopdf_force_build | ||
- wkhtmltopdf_source_dependencies | ||
- wkhtmltopdf_slug | ||
- wkhtmltopdf_tarball | ||
- wkhtmltopdf_tarball_download_url | ||
- wkhtmltopdf_user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
# file: wkhtmltopdf/tasks/build/validation.yml | ||
# | ||
# validation tasks. | ||
# | ||
|
||
- name: build | ensure build mandatory variables are set | ||
fail: | ||
msg="{{ item }} is a mandatory variable" | ||
when: "{{ item }} is not defined" | ||
with_items: | ||
- wkhtmltopdf_architecture | ||
- wkhtmltopdf_build | ||
- wkhtmltopdf_build_args | ||
- wkhtmltopdf_chroot_args | ||
- wkhtmltopdf_dir_chroot | ||
- wkhtmltopdf_dir_install | ||
- wkhtmltopdf_dir_source | ||
- wkhtmltopdf_dir_source_version | ||
- wkhtmltopdf_force_build | ||
- wkhtmltopdf_source_dependencies | ||
- wkhtmltopdf_slug | ||
- wkhtmltopdf_tarball | ||
- wkhtmltopdf_tarball_download_url |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.