diff options
Diffstat (limited to 'scripts/metadata.pm')
-rw-r--r-- | scripts/metadata.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/metadata.pm b/scripts/metadata.pm index 5300e293e7..d9804f8dc3 100644 --- a/scripts/metadata.pm +++ b/scripts/metadata.pm @@ -139,6 +139,7 @@ sub parse_target_metadata($) { $profile = { id => $1, name => $1, + has_image_metadata => 0, priority => 999, packages => [] }; @@ -146,6 +147,7 @@ sub parse_target_metadata($) { push @{$target->{profiles}}, $profile; }; /^Target-Profile-Name:\s*(.+)\s*$/ and $profile->{name} = $1; + /^Target-Profile-hasImageMetadata:\s*(\d+)\s*$/ and $profile->{has_image_metadata} = $1; /^Target-Profile-Priority:\s*(\d+)\s*$/ and do { $profile->{priority} = $1; $target->{sort} = 1; |