Skip to content

Commit

Permalink
#43 Try to fix directory permissions once more.
Browse files Browse the repository at this point in the history
  • Loading branch information
sevensolutions committed Mar 11, 2024
1 parent 4467865 commit aa7e57a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NomadIIS/Services/IisTaskHandle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ void SetupDirectory ( string subDirectory, FileSystemRights? fileSystemRights, I
if ( fileSystemRights is not null )
{
acl.AddAccessRule( new FileSystemAccessRule(
identity, fileSystemRights.Value, inheritanceFlags, PropagationFlags.NoPropagateInherit, AccessControlType.Allow ) );
identity, fileSystemRights.Value, inheritanceFlags, PropagationFlags.None, AccessControlType.Allow ) );
}

// Apply the new ACL
Expand Down

0 comments on commit aa7e57a

Please sign in to comment.