Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
devcontainer-features
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eazydevelop-devcontainer-temp
devcontainer-features
Commits
29babe42
Commit
29babe42
authored
Dec 27, 2022
by
Samruddhi Khandale
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix test
parent
f9de0e43
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
main.sh
src/common-utils/main.sh
+6
-1
rocky-8.sh
test/common-utils/rocky-8.sh
+1
-0
rocky-9.sh
test/common-utils/rocky-9.sh
+1
-0
No files found.
src/common-utils/main.sh
View file @
29babe42
...
...
@@ -153,7 +153,6 @@ install_redhat_packages() {
lsof
\
net-tools
\
psmisc
\
curl
\
wget
\
ca-certificates
\
rsync
\
...
...
@@ -174,6 +173,12 @@ install_redhat_packages() {
man-db
\
strace"
# rockylinux:9 installs 'curl-minimal' which clashes with 'curl'
# Install 'curl' for every OS except this rockylinux:9
if
[[
"
${
ID
}
"
=
"rocky"
]]
&&
[[
"
${
VERSION
}
"
!=
*
"9."
*
]]
;
then
package_list
=
"
${
package_list
}
curl"
fi
# Install OpenSSL 1.0 compat if needed
if
${
install_cmd
}
-q
list compat-openssl10
>
/dev/null 2>&1
;
then
package_list
=
"
${
package_list
}
compat-openssl10"
...
...
test/common-utils/rocky-8.sh
View file @
29babe42
...
...
@@ -9,6 +9,7 @@ source dev-container-features-test-lib
.
/etc/os-release
check
"non-root user"
test
"
$(
whoami
)
"
=
"devcontainer"
check
"distro"
test
"
${
PLATFORM_ID
}
"
=
"platform:el8"
check
"curl"
curl
--version
# Report result
reportResults
\ No newline at end of file
test/common-utils/rocky-9.sh
View file @
29babe42
...
...
@@ -9,6 +9,7 @@ source dev-container-features-test-lib
.
/etc/os-release
check
"non-root user"
test
"
$(
whoami
)
"
=
"devcontainer"
check
"distro"
test
"
${
PLATFORM_ID
}
"
=
"platform:el9"
check
"curl"
curl
--version
# Report result
reportResults
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment