From: arnaudmorin Date: Tue, 19 May 2015 22:56:21 +0000 (+0200) Subject: Really kill VBoxHeadless process X-Git-Tag: arno.2015.1.0~31^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F04%2F604%2F2;p=genesis.git Really kill VBoxHeadless process This correct a small typo that prevent the clean script to kill VBoxHeadless correctly This also add the psmisc package to dependency list in order to have the killall command JIRA: BGS-49 JIRA: BGS-50 Change-Id: I39143bdbc8076318c5a28868c4bb779411742c09 Signed-off-by: arnaudmorin --- diff --git a/foreman/ci/clean.sh b/foreman/ci/clean.sh index 25352a8..3f3c879 100755 --- a/foreman/ci/clean.sh +++ b/foreman/ci/clean.sh @@ -124,7 +124,7 @@ if [ $skip_vagrant -eq 0 ]; then ###kill virtualbox echo "${blue}Killing VirtualBox ${reset}" killall virtualbox - killall VboxHeadless + killall VBoxHeadless ###remove virtualbox echo "${blue}Removing VirtualBox ${reset}" diff --git a/foreman/ci/deploy.sh b/foreman/ci/deploy.sh index 3e20fe4..a3a9ab6 100755 --- a/foreman/ci/deploy.sh +++ b/foreman/ci/deploy.sh @@ -188,7 +188,7 @@ else fi ##install dependencies -if ! yum -y install binutils gcc make patch libgomp glibc-headers glibc-devel kernel-headers kernel-devel dkms; then +if ! yum -y install binutils gcc make patch libgomp glibc-headers glibc-devel kernel-headers kernel-devel dkms psmisc; then printf '%s\n' 'deploy.sh: Unable to install depdency packages' >&2 exit 1 fi