CentOS7にパッケージ自動更新を設定するメモ
1.パッケージのアップデート
# yum -y update
2.yum-cronのインストール
# yum -y install yum-cron
設定内容
# vim /etc/yum/yum-cron.conf
# Whether updates should be applied when they are available. Note
# that download_updates must also be yes for the update to be applied.
apply_updates = yes
3.パッケージ自動更新起動、有効
# systemctl start yum-cron
# systemctl enable yum-cron
4.開発ツールパッケージのインストール
# yum -y groupinstall base “Development tools"