]> git.donarmstrong.com Git - debhelper.git/blobdiff - autoscripts/postinst-usrlocal
r589: * Added dh_scrollkeeper, by Ross Burton.
[debhelper.git] / autoscripts / postinst-usrlocal
diff --git a/autoscripts/postinst-usrlocal b/autoscripts/postinst-usrlocal
new file mode 100644 (file)
index 0000000..a2f004d
--- /dev/null
@@ -0,0 +1,16 @@
+if [ "$1" = configure ]; then
+(
+       while read line; do
+               set -- $line
+               dir="$1"; mode="$2"; user="$3"; group="$4"
+               if [ ! -e "$dir" ]; then
+                       if mkdir "$dir" 2>/dev/null; then
+                               chown "$user":"$group" "$dir"
+                               chmod "$mode" "$dir"
+                       fi
+               fi
+       done
+) << DATA
+#DIRS#
+DATA
+fi