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.
14 lines
310 B
14 lines
310 B
#!/bin/bash
|
|
# Author: Neal Gompa <ngompa@datto.com>
|
|
|
|
# Skip if older than CentOS 8
|
|
if [ "$centos_ver" -lt "8" ]; then
|
|
t_Log "annobin does not exist pre-c8 => SKIP"
|
|
exit 0
|
|
fi
|
|
|
|
# Install annobin and gcc
|
|
t_Log "Running $0 - installing annobin and gcc."
|
|
|
|
t_InstallPackage annobin redhat-rpm-config gcc gcc-c++
|