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 | c034aa274177af006c803f1cc9d7807fcfeb61fa (patch) | |
| tree | 6d649b99de02fe4f5cd4306bbda1c0fa822f4326 | |
| parent | ae4bdf080e894355601f6d02593b34f662ab41e5 (diff) | |
Creates /var/run/quagga and fixes permissions on it, closes #192
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2864 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | package/quagga/ipkg/quagga.postinst | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/package/quagga/ipkg/quagga.postinst b/package/quagga/ipkg/quagga.postinst index 0bb4bdda6..ff83cfcae 100644 --- a/package/quagga/ipkg/quagga.postinst +++ b/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 | 
