Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
3372639
The mysql_client role assumes the deploy user exists, so it should de…
gregharvey Feb 12, 2025
1ec73f4
Fixing pre-push git hooks.
gregharvey Feb 12, 2025
91fc16a
Trying to fix ACL linting issue.
gregharvey Feb 13, 2025
83d09fc
Merge branch '2.x' into bug_fixes
gregharvey Feb 13, 2025
50003a5
Merge branch '2.x' of github.com:codeenigma/ce-provision into bug_fix…
gregharvey Feb 13, 2025
4d80ac6
Merge branch 'bug_fixes' into bug_fixes-PR-2.x
gregharvey Feb 13, 2025
5e9d709
Merge branch '2.x' into bug_fixes
gregharvey Feb 18, 2025
ce14730
Adding default portpathwhitelist variable to rkhunter.
gregharvey Feb 18, 2025
24f3f84
Merge branch '2.x' of github.com:codeenigma/ce-provision into bug_fix…
gregharvey Feb 18, 2025
12f4772
Merge branch 'bug_fixes' into bug_fixes-PR-2.x
gregharvey Feb 18, 2025
7cbfea4
Accidentally doubled up on when clauses.
gregharvey Feb 18, 2025
ff5e885
Merge branch 'bug_fixes' into bug_fixes-PR-2.x
gregharvey Feb 18, 2025
1368321
Adding another when to rkhunter tasks for when no port paths or scrip…
gregharvey Feb 19, 2025
ac7a9d3
Merge branch 'bug_fixes' into bug_fixes-PR-2.x
gregharvey Feb 19, 2025
8878bb9
Merge branch '2.x' into bug_fixes
gregharvey Mar 5, 2025
957aafa
Making the Postfix reload handler properly use the service module.
gregharvey Mar 5, 2025
ff107e8
Merge branch '2.x' of github.com:codeenigma/ce-provision into bug_fix…
gregharvey Mar 5, 2025
d7ba6f0
Merge branch 'bug_fixes' into bug_fixes-PR-2.x
gregharvey Mar 5, 2025
819456b
Merge branch '2.x' into bug_fixes
gregharvey Mar 11, 2025
8d87626
Adding handling for starting nodejs corepack on boot.
gregharvey Mar 11, 2025
b32cc60
Merge branch '2.x' of github.com:codeenigma/ce-provision into bug_fix…
gregharvey Mar 11, 2025
856203b
Merge branch 'bug_fixes' into bug_fixes-PR-2.x
gregharvey Mar 11, 2025
ef81328
Adding comment to nodejs var.
gregharvey Mar 13, 2025
ef6382e
Ensuring ce-provision is forced to run in local ce-dev containers.
gregharvey Mar 13, 2025
196dd7b
Merge branch '2.x' of github.com:codeenigma/ce-provision into bug_fix…
gregharvey Mar 13, 2025
4a51143
Merge branch 'bug_fixes' into bug_fixes-PR-2.x
gregharvey Mar 13, 2025
f36d1ff
Merging 2.x
gregharvey Mar 13, 2025
1de52f1
Removing duplicate service file.
gregharvey Mar 13, 2025
9165329
Merge branch 'bug_fixes' into bug_fixes-PR-2.x
gregharvey Mar 13, 2025
773e8a5
Merge branch '2.x' into bug_fixes
gregharvey Apr 14, 2025
7c9d44a
opengpg.org key server seems to have stopped working.
gregharvey Apr 14, 2025
12f5ee6
Merge branch '2.x' of github.com:codeenigma/ce-provision into bug_fix…
gregharvey Apr 14, 2025
df140a2
Merge branch 'bug_fixes' into bug_fixes-PR-2.x
gregharvey Apr 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions roles/debian/gpg_key/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
gpg_key_servers:
- hkps://keyserver.ubuntu.com
- hkps://keys.openpgp.org
#- hkps://pgp.mit.edu # removed from defaults - not reliable
#- hkps://keys.openpgp.org # removed key servers from defaults due to reliability issues
#- hkps://pgp.mit.edu
gpg_key:
- username: example # Must exist already on the server.
publish: false # Whether to publish to HKS public servers.
- username: example # Must exist already on the server
publish: false # Whether to publish to HKS public servers
key_type: "RSA"
key_length: 4096
email: example@example.com
Expand Down
Loading