diff --git a/resources/apt_repo/actions/run.yaml b/resources/apt_repo/actions/run.yaml new file mode 100644 index 00000000..cb71d641 --- /dev/null +++ b/resources/apt_repo/actions/run.yaml @@ -0,0 +1,9 @@ +- hosts: [{{host}}] + sudo: yes + tasks: + - apt_repository: repo={{repo}} validate_certs=no + - file: path=/etc/apt/preferences.d/{{name}}.pref state=touch + - template: + src: {{templates_dir}}/preferences + dest: /etc/apt/preferences.d/{{name}}.pref + - shell: apt-get update diff --git a/resources/apt_repo/meta.yaml b/resources/apt_repo/meta.yaml new file mode 100644 index 00000000..848c40be --- /dev/null +++ b/resources/apt_repo/meta.yaml @@ -0,0 +1,22 @@ +id: apt_repo +handler: ansible +version: 1.0.0 +input: + ip: + schema: str! + value: + repo: + schema: str! + value: + name: + schema: str! + value: + package: + schema: str + value: '*' + pin: + schema: str + value: + pin_priority: + schema: str + value: diff --git a/resources/apt_repo/templates/preferences b/resources/apt_repo/templates/preferences new file mode 100644 index 00000000..b8dfa300 --- /dev/null +++ b/resources/apt_repo/templates/preferences @@ -0,0 +1,3 @@ +Package: {{package}} +Pin: {{pin}} +Pin-Priority: {{pin_priority}} diff --git a/resources/managed_apt/actions/run.yaml b/resources/managed_apt/actions/run.yaml new file mode 100644 index 00000000..e0a4a7f5 --- /dev/null +++ b/resources/managed_apt/actions/run.yaml @@ -0,0 +1,6 @@ +- hosts: [{{host}}] + sudo: yes + tasks: + - shell: echo 'Managed by solar' > /etc/apt/sources.list + when: {{ensure_other_removed}} + - shell: apt-get update diff --git a/resources/managed_apt/meta.yaml b/resources/managed_apt/meta.yaml new file mode 100644 index 00000000..482bca4a --- /dev/null +++ b/resources/managed_apt/meta.yaml @@ -0,0 +1,17 @@ +# This resource will clean +id: apt_repo_manager +handler: ansible +version: 1.0.0 +input: + ip: + schema: str! + value: + repos: + schema: [str!] + value: + names: + schema: [str!] + value: + ensure_other_removed: + schema: bool + value: true