-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from rajiesh/master
Install sysvinit tools in centos 7 image
- Loading branch information
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,6 +87,10 @@ function install_jdk12() { | |
try su - ${PRIMARY_USER} -c "jabba install [email protected]" | ||
} | ||
|
||
function install_sysvinit_tools() { | ||
try yum install --assumeyes sysvinit-tools | ||
} | ||
|
||
function install_native_build_packages() { | ||
try yum install --assumeyes \ | ||
libxml2-devel libxslt-devel \ | ||
|
@@ -366,6 +370,7 @@ install_maven | |
install_ant | ||
install_awscli | ||
install_postgresql | ||
install_sysvinit_tools | ||
|
||
if [ "$CENTOS_MAJOR_VERSION" == "7" ]; then | ||
install_geckodriver | ||
|