Skip to content

Bug fixes pr 2.x #2368

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Mar 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 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
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
1 change: 1 addition & 0 deletions roles/_init/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
- current_play_dir_md5 == previous_play_dir_md5
- not _init.force_play
- not _ce_provision_force_play
- not is_local

- name: Include vars directories.
ansible.builtin.include_vars:
Expand Down
2 changes: 1 addition & 1 deletion roles/debian/nodejs/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ nodejs:
apt_origin_yarn: "origin=yarn,codename=stable,label=yarn-stable" # yarn repo
apt_signed_by_yarn: https://dl.yarnpkg.com/debian/pubkey.gpg
version: 22.x # LTS - see https://nodejs.dev/en/about/releases/
start_corepack: false
start_corepack: false # corepack is shipped with nodejs and enables a core set of packages
npm_packages: []
#npm_packages:
# - name: coffee-script # required
Expand Down
Loading