diff options
Diffstat (limited to 'openwrt/package/atftp/ipkg/files')
-rwxr-xr-x | openwrt/package/atftp/ipkg/files/postinst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/openwrt/package/atftp/ipkg/files/postinst b/openwrt/package/atftp/ipkg/files/postinst new file mode 100755 index 0000000000..a29644996e --- /dev/null +++ b/openwrt/package/atftp/ipkg/files/postinst @@ -0,0 +1,8 @@ +#!/bin/sh +grep -q '^tftp[[:space:]]*69/tcp' ${IPKG_INSTROOT}/etc/services 2>/dev/null +if [ $? -ne 0 ]; then + echo "tftp 69/tcp" >>${IPKG_INSTROOT}/etc/services + echo "tftp 69/udp" >>${IPKG_INSTROOT}/etc/services + echo "tftp-mcast 1758/tcp" >>${IPKG_INSTROOT}/etc/services + echo "tftp-mcast 1758/udp" >>${IPKG_INSTROOT}/etc/services +fi |