-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from isbm/isbm-profiles
Add profiles
- Loading branch information
Showing
14 changed files
with
591 additions
and
39 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# List of binary targets those are used | ||
# as entry points for the bundle apps. | ||
targets: | ||
- /usr/bin/bash | ||
- /usr/bin/apt | ||
|
||
# List of preserved packages. | ||
packages: | ||
- bash | ||
- apt | ||
|
||
# Profile config | ||
config: | ||
# List of applied filters. Filter is active | ||
# if present in this list. | ||
# | ||
# NOTE: Filters are used to the data what is still left after | ||
# the automatic examination. | ||
filters: | ||
# Matches localisation data | ||
- l10n | ||
|
||
# Matches internationalisation data | ||
- i18n | ||
|
||
# Matches all possible documentation, licenses, howtos etc | ||
- doc | ||
|
||
# Matches manpages | ||
- man | ||
|
||
# Matches everything related to the logging | ||
- log | ||
|
||
# Matches empty directories or directories with emnpty subdirectories | ||
- dir | ||
|
||
- junk | ||
|
||
# Specific paths that were not automatically detected | ||
# as not needed. Unix glob is used to be more specific, if needed. | ||
prune: | ||
- /usr/share/bug/* | ||
- /usr/share/lintian/* |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Mazzotint Profile | ||
|
||
Profiles are used to describe software or a group of software components and their | ||
presense on the system. | ||
|
||
## Structure | ||
|
||
```yaml | ||
# List of binary targets those are used | ||
# as entry points for the bundle apps. | ||
targets: | ||
- /usr/bin/bash | ||
- /usr/bin/apt | ||
|
||
# List of preserved packages. | ||
packages: | ||
- bash | ||
- apt | ||
|
||
# Profile config | ||
config: | ||
# List of applied filters. Filter is active | ||
# if present in this list. | ||
# | ||
# NOTE: Filters are used to the data what is still left after | ||
# the automatic examination. | ||
filters: | ||
# Matches localisation data | ||
- l10n | ||
|
||
# Matches internationalisation data | ||
- i18n | ||
|
||
# Matches all possible documentation, licenses, howtos etc | ||
- doc | ||
|
||
# Matches manpages | ||
- man | ||
|
||
# Matches everything related to the logging | ||
- log | ||
|
||
# Matches empty directories or directories with emnpty subdirectories | ||
- dir | ||
|
||
# Specific paths that were not automatically detected | ||
# as not needed. Unix glob is used to be more specific, if needed. | ||
prune: | ||
- /usr/share/bug/* | ||
- /usr/share/lintian/* | ||
``` |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.