Skip to content

Commit

Permalink
[feature] Added support for Ubuntu 22 #279
Browse files Browse the repository at this point in the history
Closes #279
  • Loading branch information
Aryamanz29 committed Mar 21, 2023
1 parent a24b40a commit a6fd4f6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:
name: CD Build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Git Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:
name: CI Build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Git Checkout
uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions deploy/auto-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ init_setup() {
echo -e " - Root privileges"
echo -e " - Supported systems"
echo -e " - Debian: 10 & 11"
echo -e " - Ubuntu 18.04, 18.10 & 20.04"
echo -e " - Ubuntu 18.04, 18.10, 20.04 & 22.04"
echo -e ${YLW}"\nYou can use -u\--upgrade if you are upgrading from an older version.\n"${NON}
fi

Expand All @@ -274,7 +274,7 @@ init_setup() {

if [[ "$system_id" == "Debian" || "$system_id" == "Ubuntu" ]]; then
case "$system_release" in
18.04 | 20.04 | 10 | 11)
18.04 | 20.04 | 22.04 | 10 | 11)
if [[ "$1" == "upgrade" ]]; then
report_ok && upgrade_debian
else
Expand All @@ -301,7 +301,7 @@ init_help() {
echo -e " - Root privileges"
echo -e " - Supported systems"
echo -e " - Debian: 10 & 11"
echo -e " - Ubuntu 18.04, 18.10 & 20.04\n"
echo -e " - Ubuntu 18.04, 18.10, 20.04, 22.04\n"
echo -e " -i\--install : (default) Install OpenWISP"
echo -e " -u\--upgrade : Change OpenWISP version already setup with this script"
echo -e " -h\--help : See this help message"
Expand Down

0 comments on commit a6fd4f6

Please sign in to comment.