[baseimage] Delay ntp-config service to start after 5 minutes (#2494)

This commit is contained in:
Joe LeVeque 2019-01-30 19:01:21 -08:00 committed by lguohan
parent ce9a3f0c5a
commit 33fe8d298e
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,9 @@
[Unit]
Description=Delays NTP configuration service until SONiC has started
[Timer]
OnBootSec=5min
Unit=ntp-config.service
[Install]
WantedBy=timers.target

View File

@ -296,7 +296,9 @@ sudo LANG=C cp $SCRIPTS_DIR/syncd.sh $FILESYSTEM_ROOT/usr/local/bin/syncd.sh
# Copy systemd timer configuration
# It implements delayed start of services
sudo cp $BUILD_TEMPLATES/snmp.timer $FILESYSTEM_ROOT/etc/systemd/system/
sudo cp $BUILD_TEMPLATES/ntp-config.timer $FILESYSTEM_ROOT/etc/systemd/system/
sudo LANG=C chroot $FILESYSTEM_ROOT systemctl enable snmp.timer
sudo LANG=C chroot $FILESYSTEM_ROOT systemctl enable ntp-config.timer
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get remove -y python-dev
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get clean -y