Author: blogic Date: 2015-10-19 12:09:46 +0200 (Mon, 19 Oct 2015) New Revision: 47219
Modified: trunk/package/base-files/files/etc/init.d/boot Log: base-files: create /var/tmp on boot FHS mandates presence of /var/tmp on compliant systems. The lack of /var/tmp was discovered when using MIT Kerberos libraries which default to that location for storing credentials cache. Signed-off-by: Paul Fertser <[email protected]> Modified: trunk/package/base-files/files/etc/init.d/boot =================================================================== --- trunk/package/base-files/files/etc/init.d/boot 2015-10-19 10:09:36 UTC (rev 47218) +++ trunk/package/base-files/files/etc/init.d/boot 2015-10-19 10:09:46 UTC (rev 47219) @@ -26,6 +26,7 @@ mkdir -p /var/log mkdir -p /var/lock mkdir -p /var/state + mkdir -p /var/tmp mkdir -p /tmp/.uci chmod 0700 /tmp/.uci mkdir -p /tmp/.jail _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
