Skip to content

Commit

Permalink
Merge pull request #211 from sghill/ospackage-file-directives
Browse files Browse the repository at this point in the history
Add Mappings for ospackage Block File Directives
  • Loading branch information
sghill authored Oct 20, 2016
2 parents 546c5cd + 2b48d74 commit cb5181d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ public abstract class SystemPackagingTask extends AbstractArchiveTask {
mapping.map('createDirectoryEntry', { parentExten?.getCreateDirectoryEntry()?:false })
mapping.map('priority', { parentExten?.getPriority()?:'optional' })

mapping.map('preInstallFile', { parentExten?.getPreInstallFile() })
mapping.map('postInstallFile', { parentExten?.getPostInstallFile() })
mapping.map('preUninstallFile', { parentExten?.getPreUninstallFile() })
mapping.map('postUninstallFile', { parentExten?.getPostUninstallFile() })

// Task Specific
mapping.map('archiveName', { assembleArchiveName() })
}
Expand Down

0 comments on commit cb5181d

Please sign in to comment.