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.
|
#!/bin/bash
|
|
# Author: Lz <lz843723683@163.com>
|
|
|
|
if [ "$centos_ver" -ne "7" ];then
|
|
t_Log "Package not included in CentOS $centos_ver => SKIP"
|
|
exit 0
|
|
fi
|
|
|
|
t_Log "$0 - installing valac"
|
|
t_InstallPackage vala
|
|
|