func/core/pkg_tftp-server/10-get-test.sh

11 lines
228 B
Bash
Raw Permalink Normal View History

2024-08-15 03:52:26 +00:00
#!/bin/bash
r_log "tftp" "Getting a file from tftp"
chmod 777 /var/lib/tftpboot
echo "rocky func" > /var/lib/tftpboot/tftptest
tftp 127.0.0.1 -c get tftptest
grep -q "rocky func" tftptest
r_checkExitStatus $?
/bin/rm tftptest