-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
23 changed files
with
30 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,5 @@ | |
|
||
roles: | ||
|
||
- role: hardening.ssh-hardening | ||
- role: dev-sec.ssh-hardening | ||
tags: [ 'role::ssh-hardening' ] |
Submodule debops.librenms
deleted from
227ddc
Submodule debops.nginx
updated
6 files
+8 −0 | CHANGES.rst | |
+18 −2 | defaults/main.yml | |
+12 −12 | docs/defaults-detailed.rst | |
+2 −3 | handlers/main.yml | |
+6 −7 | tasks/nginx_servers.yml | |
+4 −2 | templates/etc/nginx/sites-available/default.conf.j2 |
Submodule debops.pki
updated
5 files
+2 −2 | README.md | |
+10 −6 | docs/acme-integration.rst | |
+0 −3 | meta/ansigenome.yml | |
+3 −1 | tasks/main.yml | |
+45 −23 | templates/etc/ansible/facts.d/pki.fact.j2 |
Submodule debops.redis
updated
from 76ff21 to 8c07f2
Submodule dev-sec.apache-hardening
added at
d54391
Submodule nusenu.relayor
updated
2 files
+0 −22 | tasks/linux_service.yml | |
+20 −0 | tasks/rpm_install.yml |
Submodule debops.librenms
added at
4e049e
Submodule ypid.kernel_module
updated
from 4eb461 to b6c700
Submodule debops-keyring
updated
5 files
+16 −1 | CHANGES.rst | |
+9 −2 | README.rst | |
+ − | debops-keyring-gpg/0xDAA9DC5E750C1E85 | |
+1 −0 | keyids | |
+1 −0 | roles/contributors |
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 |
---|---|---|
|
@@ -10,10 +10,9 @@ ansigenome_info: | |
license_url: 'https://tldrlegal.com/license/gnu-general-public-license-v3-(gpl-3)' | ||
|
||
authors: | ||
|
||
- name: 'Robin Schneider' | ||
url: 'http://ypid.de/' | ||
email: '[email protected]' | ||
twitter: 'ypid' | ||
github: 'ypid' | ||
|
||
synopsis: | |
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,10 +1,8 @@ | ||
--- | ||
|
||
- name: Ensure specified packages are in there desired state | ||
apt: | ||
package: | ||
name: '{{ item }}' | ||
state: '{{ "present" if (ROLE_NAME__deploy_state == "present") else "absent" }}' | ||
install_recommends: False | ||
purge: True | ||
with_flattened: '{{ ROLE_NAME__base_packages }}' | ||
tags: [ 'role::ROLE_NAME:pkts' ] |