setfacl to reset file to default permissions?
Use getfacl
to get the default permissions from the directory and then pipe the result into setfacl
to apply it. Something like this should work:
getfacl -d <directory> | setfacl -R --set-file=- <directory>