-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Support for mod_php on Ubuntu 22.04 #2278
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -349,7 +349,9 @@ | |
$php_version = $facts['os']['release']['major'] ? { | ||
'9' => '7.0', # Debian Stretch | ||
'10' => '7.3', # Debian Buster | ||
'16.04' => '7.0', # Ubuntu Xenial Xerus | ||
'20.04' => '7.4', # Ubuntu Foccal Fossal | ||
'22.04' => '8.1', # Ubuntu Jellyfish | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd imagine 22.04 is closer to Debian Bullseye. It's mostly about the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I admit I don't know exactly what the
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree the |
||
default => '7.2', # Ubuntu Bionic, Cosmic and Disco | ||
} | ||
$mod_packages = { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,8 @@ | |
"operatingsystem": "Ubuntu", | ||
"operatingsystemrelease": [ | ||
"18.04", | ||
"20.04" | ||
"20.04", | ||
"22.04" | ||
] | ||
}, | ||
{ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ubuntu 16.04 is EOL and unsupported. Please keep it out.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you mind if I remove this commit and do a force push ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not at all. In fact, that's what I do all the time.