Fix post_install.d for Fedora distribution

Reasons:
 - Fedora is not Ubuntu
 - Fedora uses 'yum' for software management

Changes:
 - renaming file '90-apt-get-update' to '90-yum-update'
 - swapping 'apt-get update' to 'yum update'

Change-Id: I212ab76ff6e302efcc955d26b7b1d978e4f204ca
Closes-Bug: #1371210
This commit is contained in:
Denis Makogon 2014-09-19 16:14:46 +03:00 committed by Denis M.
parent bf83829bc2
commit 616042eeb7
2 changed files with 9 additions and 9 deletions

View File

@ -1,9 +0,0 @@
#!/bin/bash
# CONTEXT: GUEST after packages installed
# PURPOSE: do apt-get update to save each instance having to do all the work
set -e
set -o xtrace
apt-get update

View File

@ -0,0 +1,9 @@
#!/bin/bash
# CONTEXT: GUEST after packages installed
# PURPOSE: do yum update to save each instance having to do all the work
set -e
set -o xtrace
yum update