#!/bin/bash
#gets files from tftp server and deploy in the TC

for i in lts.conf ssh_known_hosts; do
    echo "get KIWI/$i" | tftp $SERVER
done

cp lts.conf /etc/
cp ssh_known_hosts /etc/ssh/

