OpenWrt – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 #!/bin/sh
2  
3 [ -f /etc/opkg.conf ] && grep -q "src\/" /etc/opkg.conf || exit 0
4  
5 echo -e "# Old feeds from previous image\n# Uncomment to reenable\n" >> /etc/opkg/customfeeds.conf
6 sed -n "s/.*\(src\/.*\)/# \1/p" /etc/opkg.conf >> /etc/opkg/customfeeds.conf
7 sed -i "/.*src\/.*/d" /etc/opkg.conf
8  
9 exit 0