You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
322 B
12 lines
322 B
#!/bin/sh
|
|
# Author: Athmane Madjoudj <athmanem@gmail.com>
|
|
|
|
t_Log "Running $0 - check if the packages tree is installable."
|
|
|
|
yum --skip-broken -y install \* > /tmp/yum_install_tree.log 2>&1
|
|
ret_val=$?
|
|
# print the output of yum when it fails
|
|
[ $ret_val -ne 0 ] && tail /tmp/yum_install_tree.log
|
|
|
|
t_CheckExitStatus $ret_val
|