df1a928 GPO: Soften umask in gpo_child

Authored and Committed by lslebodn 8 years ago
    GPO: Soften umask in gpo_child
    
    The default umask(0177) inherited from sssd_be is to strict
    for gpo_child in non-root mode. mkdir creates directories with only "rw"
    permission for owner.
    The man 1 chmod says: "execute (or search for directories) (x)"
    In another words, execute bit is required for directories.
    
    sh-4.3$ mkdir dir
    sh-4.3$ chmod 600 dir/
    sh-4.3$ mkdir dir/subdir
    mkdir: cannot create directory ‘dir/subdir’: Permission denied
    
    Resolves:
    https://fedorahosted.org/sssd/ticket/2962
    
    Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
    (cherry picked from commit 192126738fa82c5624f4740147426c552126c602)