Displaying 3 results from an estimated 3 matches for "dirmask".
2011 Nov 01
0
Announce: Puppet 2.7.7rc1 available
...arch bit not set on newly created directories
    Previously, puppet would not set the user, group, or other
    execute/search bits for newly created directories. This was a
    regression introduced in 2.7.6 in commit
    22bfd9ce83ff52d909a43c370ba71112ed4961a4.
    This was caused because the dirmask''ing was occurring when munging the
    mode property, but that was occurring prior to the ensure property
    being synced, which is when the directory is actually created. And
    since the directory did not exist, the executable bits were never
    added.
    Similar failures would occu...
2006 Apr 29
1
How to notify dovecot that maildir contents is changed by third-party helper ?
...folder to consume spam
{
        local dir2check=$(dirname $1)/$INBOX_DIRNAME
        find "$dir2check" -type f | while read f; do
                IsSpamFile "$f" && $doit $MV "$f" "${1}/$INBOX_DIRNAME"
        done
}
DoOnSubFolders()        #  $1 = dirmask to find, $2 = action to apply
{
        find $VMAIL_TOPDIR/ -mindepth $FIND_DEPTH -maxdepth $FIND_DEPTH \
                -type d -iname "$1" \
        | while read d; do
                "$2" "$d"
        done
}
#=========  Main  =====================================...
2013 Jun 08
3
R CMD INSTALL and file permission settings
...irchmod, ss)
                              .Call(dirchmod, ss)
              ## tree, since the later .Call(dirchmod) call will
  edd at max:~/svn/r-devel/src/library/tools/R$
  which also uses unconditional 644 / 755
      mode_t mask = S_IRUSR | S_IRGRP | S_IROTH | S_IWUSR, /* 0644 */
          dirmask = mask | S_IXUSR | S_IXGRP | S_IXOTH; /* 0755 */
Proposal:
  Add a new option() [with a to-be-determined name] which, if enabled, turns
  on group-write modes for files and directories, ie "664" and "775".  
  One way would be to set two character vars at the beginning of...