diff options
Diffstat (limited to 'autoscripts/postinst-usrlocal')
-rw-r--r-- | autoscripts/postinst-usrlocal | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/autoscripts/postinst-usrlocal b/autoscripts/postinst-usrlocal deleted file mode 100644 index a2f004db..00000000 --- a/autoscripts/postinst-usrlocal +++ /dev/null @@ -1,16 +0,0 @@ -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 |