#!/bin/sh # Copy new pictograms echo "Copying xsd and examples to /var/lib/lliurex-amic" cp -r /usr/share/lliurex-amic/examples/galleries/* /var/lib/lliurex-amic/xml/galleries/ cp -r /usr/share/lliurex-amic/examples/grids/* /var/lib/lliurex-amic/xml/grids/ cp -r /usr/share/lliurex-amic/examples/themes/* /var/lib/lliurex-amic/xml/themes/ chmod -R 775 /var/lib/lliurex-amic/xml/galleries/* chmod -R 775 /var/lib/lliurex-amic/xml/grids/* chmod -R 775 /var/lib/lliurex-amic/xml/themes/* chgrp -R lliurex-amic /var/lib/lliurex-amic/xml/galleries/* chgrp -R lliurex-amic /var/lib/lliurex-amic/xml/grids/* chgrp -R lliurex-amic /var/lib/lliurex-amic/xml/themes/* #DEBHELPER# exit 0