diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-08 23:34:17 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-08 23:34:17 +0000 |
commit | 8d0e8886d4c79776e1a73d357c02d86ebea0e769 (patch) | |
tree | c0fd1216522379e9da9e592ba56dc7b155cf6ae0 /openwrt/package/quagga | |
parent | cc74ba9c397335cac270cc711d49a4defaa774c1 (diff) |
Creates /var/run/quagga and fixes permissions on it, closes #192
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2864 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/quagga')
-rw-r--r-- | openwrt/package/quagga/ipkg/quagga.postinst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openwrt/package/quagga/ipkg/quagga.postinst b/openwrt/package/quagga/ipkg/quagga.postinst index 0bb4bdda6d..ff83cfcae4 100644 --- a/openwrt/package/quagga/ipkg/quagga.postinst +++ b/openwrt/package/quagga/ipkg/quagga.postinst @@ -2,6 +2,7 @@ name=quagga id=51 +dir=/var/run/quagga # do not change below # check if we are on real system @@ -43,3 +44,6 @@ echo "ospf6d 2606/tcp" >>${IPKG_INSTROOT}/etc/services echo "ospfapi 2607/tcp" >>${IPKG_INSTROOT}/etc/services echo "isisd 2608/tcp" >>${IPKG_INSTROOT}/etc/services fi + +mkdir -p $dir +chown -R $name:$name $dir |