rootfs: Add chrony service to rootfs

chrony will be used to schronize guest clock with host
using kvm_ptp kernel driver.
This does add another active component to the rootfs
but keeping time scychorized is crucial.

Fixes #255

Signed-off-by: Archana Shinde <archana.m.shinde@intel.com>
This commit is contained in:
Archana Shinde 2019-03-19 14:12:21 -07:00
parent da9f541deb
commit 510ddd28c8
5 changed files with 5 additions and 5 deletions

View File

@ -22,7 +22,7 @@ GPG_KEY_URL="https://www.centos.org/keys/RPM-GPG-KEY-CentOS-7"
GPG_KEY_FILE="RPM-GPG-KEY-CentOS-7"
PACKAGES="iptables"
PACKAGES="iptables chrony"
#Optional packages:
# systemd: An init system that will start kata-agent if kata-agent

View File

@ -15,7 +15,7 @@ clr_url="https://download.clearlinux.org"
BASE_URL="${clr_url}/releases/${OS_VERSION}/${REPO_NAME}/${ARCH}/os/"
PACKAGES="iptables-bin libudev0-shim"
PACKAGES="iptables-bin libudev0-shim chrony"
#Optional packages:
# systemd: An init system that will start kata-agent if kata-agent

View File

@ -10,7 +10,7 @@ BASE_URL="http://developer.huawei.com/ict/site-euleros/euleros/repo/yum/${OS_VER
GPG_KEY_FILE="RPM-GPG-KEY-EulerOS"
PACKAGES="iptables"
PACKAGES="iptables chrony"
#Optional packages:
# systemd: An init system that will start kata-agent if kata-agent

View File

@ -9,7 +9,7 @@ OS_VERSION=${OS_VERSION:-28}
MIRROR_LIST="https://mirrors.fedoraproject.org/metalink?repo=fedora-${OS_VERSION}&arch=\$basearch"
PACKAGES="iptables"
PACKAGES="iptables chrony"
#Optional packages:
# systemd: An init system that will start kata-agent if kata-agent

View File

@ -12,7 +12,7 @@ OS_VERSION=${OS_VERSION:-18.04}
OS_NAME=${OS_NAME:-"bionic"}
# packages to be installed by default
PACKAGES="systemd iptables init"
PACKAGES="systemd iptables init chrony"
DEBOOTSTRAP=${PACKAGE_MANAGER:-"debootstrap"}