-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
136b860
commit 0e031e4
Showing
19 changed files
with
46 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
--- | ||
skip_list: | ||
- '303' | ||
- "303" |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
skip_list: | ||
- '303' | ||
- "303" | ||
- experimental |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
"MD013": false # line-length | ||
"MD014": false # show commands output | ||
"MD041": false # first line should be heading (build status image) | ||
MD013: false # line-length | ||
MD014: false # show commands output | ||
MD041: false # first line should be heading (build status image) |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
"MD013": false # line-length | ||
"MD014": false # show commands output | ||
"MD041": false # first line should be heading (build status image) | ||
MD013: false # line-length | ||
MD014: false # show commands output | ||
MD041: false # first line should be heading (build status image) |
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 |
---|---|---|
|
@@ -11,6 +11,6 @@ provisioner: | |
verifier: | ||
name: testinfra | ||
lint: | | ||
yamllint . | ||
ansible-lint | ||
flake8 | ||
yamllint . | ||
ansible-lint | ||
flake8 |
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 |
---|---|---|
@@ -1,41 +1,41 @@ | ||
--- | ||
- name: Set SSL certificate (if set) | ||
ansible.builtin.set_fact: | ||
register_parameter_ssl: "--ssl-public-key {{ client_landscape_ssl }}" | ||
register_parameter_ssl: --ssl-public-key {{ client_landscape_ssl }} | ||
when: client_landscape_ssl is defined | ||
|
||
- name: Set account name (if set) | ||
ansible.builtin.set_fact: | ||
register_parameter_tags: "--tags {{ client_tags }}" | ||
register_parameter_tags: --tags {{ client_tags }} | ||
when: client_tags is defined | ||
- name: Set account name (if not set) | ||
ansible.builtin.set_fact: | ||
register_parameter_tags: '' | ||
register_parameter_tags: "" | ||
when: client_tags is undefined | ||
|
||
- name: Set registration key (if set) | ||
ansible.builtin.set_fact: | ||
register_parameter_key: "--registration-key {{ client_registration_key }}" | ||
register_parameter_key: --registration-key {{ client_registration_key }} | ||
when: client_registration_key is defined | ||
- name: Set registration key (if not set) | ||
ansible.builtin.set_fact: | ||
register_parameter_key: '' | ||
register_parameter_key: "" | ||
when: client_registration_key is undefined | ||
|
||
- name: Set computer title (if set) | ||
ansible.builtin.set_fact: | ||
register_parameter_title: "--computer-title '{{ client_computer_title }}'" | ||
register_parameter_title: --computer-title '{{ client_computer_title }}' | ||
when: client_computer_title is defined | ||
- name: Set computer title (if not set) | ||
ansible.builtin.set_fact: | ||
register_parameter_title: "--computer-title '{{ ansible_fqdn }}'" | ||
register_parameter_title: --computer-title '{{ ansible_fqdn }}' | ||
when: client_computer_title is undefined | ||
|
||
- name: Set account name (if set) | ||
ansible.builtin.set_fact: | ||
register_parameter_account: "--account-name {{ client_account_name }}" | ||
register_parameter_account: --account-name {{ client_account_name }} | ||
when: client_account_name is defined | ||
- name: Set account name (if not set) | ||
ansible.builtin.set_fact: | ||
register_parameter_account: '' | ||
register_parameter_account: "" | ||
when: client_account_name is undefined |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--- | ||
# package configuration | ||
server_version: '24.04' | ||
server_version: "24.04" |
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 |
---|---|---|
|
@@ -13,6 +13,6 @@ provisioner: | |
verifier: | ||
name: testinfra | ||
lint: | | ||
yamllint . | ||
ansible-lint | ||
flake8 | ||
yamllint . | ||
ansible-lint | ||
flake8 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
server_ppa: "ppa:landscape/self-hosted-{{ server_version }}" | ||
server_ppa: ppa:landscape/self-hosted-{{ server_version }} | ||
server_packages: | ||
- landscape-server-quickstart |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
"MD013": false # line-length | ||
"MD014": false # show commands output | ||
"MD041": false # first line should be heading (build status image) | ||
MD013: false # line-length | ||
MD014: false # show commands output | ||
MD041: false # first line should be heading (build status image) |
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 |
---|---|---|
|
@@ -13,6 +13,6 @@ provisioner: | |
verifier: | ||
name: testinfra | ||
lint: | | ||
yamllint . | ||
ansible-lint | ||
flake8 | ||
yamllint . | ||
ansible-lint | ||
flake8 |
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