diff options
author | Harry Huang <huangxiangyu5@huawei.com> | 2017-12-25 10:29:37 +0800 |
---|---|---|
committer | Harry Huang <huangxiangyu5@huawei.com> | 2017-12-25 10:33:47 +0800 |
commit | 3ba48075c0fb8fe792db3a611993a6b518e3af10 (patch) | |
tree | d937cb79219d85a018640d4ab5d53f53f72b9989 | |
parent | c493f4f882025e29decf8904b5cd92abfbaf4a1c (diff) |
fix ntp issue
Install ntp to avoid service ntp start
failure
Change-Id: Ib14607bf05f8ceacb000570a210fd5cc2b4bc3c1
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
-rw-r--r-- | compass-cobbler/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compass-cobbler/Dockerfile b/compass-cobbler/Dockerfile index d877ad0..d963e49 100644 --- a/compass-cobbler/Dockerfile +++ b/compass-cobbler/Dockerfile @@ -6,7 +6,7 @@ ARG BRANCH=master # pkgs and services... RUN yum -y update && \ yum -y install epel-release && \ - yum -y install wget dhcp bind syslinux pykickstart file initscripts net-tools tcpdump xinetd vim avahi avahi-tools && \ + yum -y install wget dhcp bind syslinux pykickstart file initscripts net-tools tcpdump xinetd vim avahi avahi-tools ntp && \ wget http://artifacts.opnfv.org/compass4nfv/package/cobbler/cobbler-2.6.10-1.fc22.noarch.rpm && \ wget http://artifacts.opnfv.org/compass4nfv/package/cobbler/cobbler-web-2.6.10-1.fc22.noarch.rpm && \ yum -y localinstall cobbler-2.6.10-1.fc22.noarch.rpm cobbler-web-2.6.10-1.fc22.noarch.rpm && \ |