Dockerfile based on BRT, test suite for module

This commit is contained in:
Radoslav Pitonak 2017-05-04 10:50:54 +02:00
commit ba9d082c94
22 changed files with 1007 additions and 0 deletions

View file

@ -0,0 +1,7 @@
#!/bin/sh
# Fix permissions on the given directory to allow group read/write of
# regular files and execute of directories.
find "$1" -exec chown postgres {} \;
find "$1" -exec chgrp 0 {} \;
find "$1" -exec chmod g+rw {} \;
find "$1" -type d -exec chmod g+x {} +