diff --git a/gen/fbmi_doors b/gen/fbmi_doors deleted file mode 100755 index 7e763afb..00000000 --- a/gen/fbmi_doors +++ /dev/null @@ -1,108 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; -use perunServicesInit; -use perunServicesUtils; - -sub getEpuid; -sub fillAffiliations; - -local $::SERVICE_NAME = "fbmi_doors"; -local $::PROTOCOL_VERSION = "1.0.0"; -my $SCRIPT_VERSION = "1.0.0"; - -perunServicesInit::init; -my $DIRECTORY = perunServicesInit::getDirectory; -my $data = perunServicesInit::getHashedDataWithGroups; - -my $fileName = "$DIRECTORY/$::SERVICE_NAME".".csv"; - -#Constants -our $A_USER_ID; *A_USER_ID = \'urn:perun:user:attribute-def:core:id'; -our $A_MEMBER_MAIL; *A_MEMBER_MAIL = \'urn:perun:member:attribute-def:def:mail'; -our $A_USER_EPUIDS; *A_USER_EPUIDS = \'urn:perun:user:attribute-def:virt:epuids'; -our $A_USER_AFFILIATIONS; *A_USER_AFFILIATIONS = \'urn:perun:user:attribute-def:virt:eduPersonScopedAffiliations'; - -our $A_RESOURCE_NAME; *A_RESOURCE_NAME = \'urn:perun:resource:attribute-def:core:name'; -our $A_GROUP_NAME; *A_GROUP_NAME = \'urn:perun:group:attribute-def:core:name'; - -# TODO - probably handle group expirations and status? - -my $userStruct = {}; - -foreach my $resourceId ( $data->getResourceIds() ) { - - my $resourceName = $data->getResourceAttributeValue( resource => $resourceId, attrName => $A_RESOURCE_NAME); - - foreach my $groupId ( $data->getGroupIdsForResource( resource => $resourceId ) ) { - - my $groupName = $data->getGroupAttributeValue( group => $groupId, attrName => $A_GROUP_NAME ); - - for my $memberId ( $data->getMemberIdsForResourceAndGroup( resource => $resourceId, group => $groupId )) { - - my $epuidCvut = getEpuid('@cvut.cz', $data->getUserAttributeValue( member => $memberId, attrName => $A_USER_EPUIDS)); - my $epuidCuni = getEpuid('@cuni.cz', $data->getUserAttributeValue( member => $memberId, attrName => $A_USER_EPUIDS)); - - if (defined $epuidCvut) { - - $userStruct->{$epuidCvut}->{'EMAIL'} = $data->getMemberAttributeValue( member => $memberId, attrName => $A_MEMBER_MAIL); - $userStruct->{$epuidCvut}->{'GROUPS'}->{$groupName} = 1; - $userStruct->{$epuidCvut}->{'RESOURCES'}->{$resourceName} = 1; - fillAffiliations($epuidCvut, '@cvut.cz', $data->getUserAttributeValue( member => $memberId, attrName => $A_USER_AFFILIATIONS)); - - } - - if (defined $epuidCuni) { - - $userStruct->{$epuidCuni}->{'EMAIL'} = $data->getMemberAttributeValue( member => $memberId, attrName => $A_MEMBER_MAIL); - $userStruct->{$epuidCuni}->{'GROUPS'}->{$groupName} = 1; - $userStruct->{$epuidCuni}->{'RESOURCES'}->{$resourceName} = 1; - fillAffiliations($epuidCuni, '@cuni.cz', $data->getUserAttributeValue( member => $memberId, attrName => $A_USER_AFFILIATIONS)); - - } - - } - - } - -} - - -open FILE,">:encoding(UTF-8)","$fileName" or die "Cannot open $fileName: $! \n"; -foreach my $epuid (sort keys %$userStruct) { - - my $entry = $userStruct->{$epuid}; - my @affs = sort keys %{$entry->{'AFFILIATIONS'}}; - my @grps = sort keys %{$entry->{'GROUPS'}}; - my @res = sort keys %{$entry->{'RESOURCES'}}; - - print FILE $entry->{'EMAIL'} . ";" . $epuid . ";" . join(",",@affs) . ";" . join(",",@grps) . ";" . join(",",@res) . "\n"; - -} -close (FILE) or die "Cannot close $fileName: $! \n"; - -perunServicesInit::finalize; - -sub fillAffiliations() { - my $epuid = shift @_; - my $scope = shift @_; - my $affiliations = shift @_; - - foreach my $aff (@$affiliations) { - if ($aff =~ /(.*)$scope$/) { - $userStruct->{$epuid}->{"AFFILIATIONS"}->{$aff} = 1; - } - } -} - -sub getEpuid() { - my $scope = shift @_; - my $vals = shift @_; - foreach my $val (@$vals) { - if ($val =~ /(.*)$scope$/) { - return $val; - } - } - return undef; -} diff --git a/other/generic-package/debian/control b/other/generic-package/debian/control index e47654d1..8fc25337 100644 --- a/other/generic-package/debian/control +++ b/other/generic-package/debian/control @@ -1,6 +1,6 @@ Source: generic-package Section: utils -Priority: extra +Priority: optional Maintainer: Michal Stava Build-Depends: debhelper (>= 8.0.0) Standards-Version: 3.9.5 diff --git a/other/perun-propagate/debian/changelog b/other/perun-propagate/debian/changelog index db30b43e..0d857957 100644 --- a/other/perun-propagate/debian/changelog +++ b/other/perun-propagate/debian/changelog @@ -1,3 +1,9 @@ +perun-propagate (3.0.9) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-propagate (3.0.8) stable; urgency=medium * define missing lsb functions for rhel compatibility diff --git a/other/perun-propagate/debian/control b/other/perun-propagate/debian/control index 960c98dc..ebe8e422 100644 --- a/other/perun-propagate/debian/control +++ b/other/perun-propagate/debian/control @@ -1,8 +1,8 @@ Source: perun-propagate Section: utils -Priority: extra +Priority: optional Maintainer: Pavel Zlamal -Build-Depends: debhelper (>= 7) +Build-Depends: debhelper (>= 8.0.0) Standards-Version: 3.9.5 Package: perun-propagate diff --git a/other/perun-slave-metacentrum/debian/changelog b/other/perun-slave-metacentrum/debian/changelog index 1860b911..fec8cb89 100644 --- a/other/perun-slave-metacentrum/debian/changelog +++ b/other/perun-slave-metacentrum/debian/changelog @@ -1,3 +1,9 @@ +perun-slave-metacentrum (3.0.8) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-metacentrum (3.0.7) stable; urgency=medium * removed pbs-phys-cluster and pbs-pre diff --git a/other/perun-slave-metacentrum/debian/control b/other/perun-slave-metacentrum/debian/control index ef909988..b238e7f8 100644 --- a/other/perun-slave-metacentrum/debian/control +++ b/other/perun-slave-metacentrum/debian/control @@ -1,6 +1,6 @@ Source: perun-slave-metacentrum Section: utils -Priority: extra +Priority: optional Maintainer: Michal Stava Build-Depends: debhelper (>= 8.0.0) Standards-Version: 3.9.5 @@ -10,5 +10,5 @@ Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends} Conflicts: perun-slave-meta, perun-slave Description: Package with required dependencies for slave scripts in Metacentrum. - Package containing all dependencies needed for regular + Package containing all dependencies needed for regular work of Perun in the Metacentrum. diff --git a/send/VsupIfis.pm b/send/VsupIfis.pm index b8d7801f..6d839d3f 100755 --- a/send/VsupIfis.pm +++ b/send/VsupIfis.pm @@ -14,7 +14,7 @@ use DBI; sub init_config($) { my $filename = shift; - my $configPath = "/home/perun/perun-sync/$filename"; + my $configPath = "/etc/perun/ifis/$filename"; my $result = {}; open FILE, $configPath or die "Could not open config file $configPath: $!"; diff --git a/send/ad_admin_group_mu_ucn b/send/ad_admin_group_mu_ucn index cbd1264f..4dae279e 100755 --- a/send/ad_admin_group_mu_ucn +++ b/send/ad_admin_group_mu_ucn @@ -115,9 +115,9 @@ print "Group failed to remove: " . $counter_group_not_removed. " entries.\n"; $lock->unlock(); if ($counter_group_not_added or $counter_group_members_not_updated or $counter_group_not_removed or $counter_group_not_emptied) { - die "Some entries failed to process.\nSee log at: ~/perun-engine/send/logs/$service_name.log"; + die "Some entries failed to process.\nSee log at: ~/send/logs/$service_name.log"; } -if ($counter_group_members_updated_with_errors > 0) { die "Some members were not updated.\nSee log at: ~/perun-engine/send/logs/$service_name.log";} +if ($counter_group_members_updated_with_errors > 0) { die "Some members were not updated.\nSee log at: ~/send/logs/$service_name.log";} # END of main script diff --git a/send/ad_admin_user_mu_ucn b/send/ad_admin_user_mu_ucn index 6fd9b2fb..53965da1 100755 --- a/send/ad_admin_user_mu_ucn +++ b/send/ad_admin_user_mu_ucn @@ -87,7 +87,7 @@ print "NOT Updated: " . $counter_update_fail. " entries.\n"; $lock->unlock(); my $counter_fail = $counter_remove_fail + $counter_update_fail; -if ($counter_fail > 0) { die "Failed to process: " . $counter_fail . " entries.\nSee log at: ~/perun-engine/send/logs/$service_name.log";} +if ($counter_fail > 0) { die "Failed to process: " . $counter_fail . " entries.\nSee log at: ~/send/logs/$service_name.log";} # END of main script diff --git a/send/ad_group_vsup_o365 b/send/ad_group_vsup_o365 index 2f41af72..28dfe3a2 100755 --- a/send/ad_group_vsup_o365 +++ b/send/ad_group_vsup_o365 @@ -79,7 +79,7 @@ print "Group failed to update (members): " . $counter_group_members_not_updated. $lock->unlock(); -if ($counter_group_members_updated_with_errors > 0) { die "Failed to process: " . $counter_group_members_updated_with_errors . " entries.\nSee log at: ~/perun-engine/send/logs/$service_name.log";} +if ($counter_group_members_updated_with_errors > 0) { die "Failed to process: " . $counter_group_members_updated_with_errors . " entries.\nSee log at: ~/send/logs/$service_name.log";} # END of main script diff --git a/send/fbmi_doors b/send/fbmi_doors deleted file mode 100755 index 77161c1c..00000000 --- a/send/fbmi_doors +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -export SERVICE_NAME="fbmi_doors" - -python3 generic_send.py "$1" "$2" "$3" diff --git a/send/vsup_tritius b/send/vsup_tritius index 4e4f19b5..e0b04cf9 100755 --- a/send/vsup_tritius +++ b/send/vsup_tritius @@ -102,6 +102,27 @@ foreach my $uco (sort keys %$dataByUco) { my $TOWN = $dataByUco->{$uco}->{'TOWN'}; my $POSTAL_CODE = $dataByUco->{$uco}->{'POSTAL_CODE'}; + if (defined $PHONE and length $PHONE > 20) { + print $uco . " | long telefon: " . $PHONE . "\n"; + next; + } + if (defined $CARD_CHIP_NUMBER and length $CARD_CHIP_NUMBER > 20) { + print $uco . " | long kod cipu: " . $CARD_CHIP_NUMBER . "\n"; + next; + } + if (defined $CARD_BARCODE and length $CARD_BARCODE > 20) { + print $uco . " | long kod karty: " . $CARD_BARCODE . "\n"; + next; + } + if (defined $HOUSE_NUMBER and length $HOUSE_NUMBER > 20) { + print $uco . " | long adr_cp_co: " . $HOUSE_NUMBER . "\n"; + next; + } + if (defined $POSTAL_CODE and length $POSTAL_CODE > 20) { + print $uco . " | long psc: " . $POSTAL_CODE . "\n"; + next; + } + if($DEBUG == 1) { print "INSERT NEW RECORD: $uco\n"; } $inserted++; # we will do insert diff --git a/slave/base/changelog b/slave/base/changelog index 51c488e1..ab3d4e78 100644 --- a/slave/base/changelog +++ b/slave/base/changelog @@ -1,3 +1,9 @@ +perun-slave-base (3.1.18) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 19 Jan 2023 08:30:00 +0100 + perun-slave-base (3.1.17) stable; urgency=low * Added function log_warn_to_err_exit() that prints message to diff --git a/slave/meta/changelog b/slave/meta/changelog index 17518e1e..828589f9 100644 --- a/slave/meta/changelog +++ b/slave/meta/changelog @@ -1,3 +1,9 @@ +perun-slave-full (3.1.17) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-full (3.1.16) stable; urgency=medium * new service oidc-with-groups-einfra diff --git a/slave/process-affiliation-mapping-mu/changelog b/slave/process-affiliation-mapping-mu/changelog index 0ae7ac88..84a032dd 100644 --- a/slave/process-affiliation-mapping-mu/changelog +++ b/slave/process-affiliation-mapping-mu/changelog @@ -1,3 +1,9 @@ +perun-slave-process-affiliation-mapping-mu (3.1.2) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-affiliation-mapping-mu (3.1.1) stable; urgency=low * New package version for perun-slave-process-affiliation-mapping-mu diff --git a/slave/process-affiliation-mapping/changelog b/slave/process-affiliation-mapping/changelog index 410b8687..c01efcb4 100644 --- a/slave/process-affiliation-mapping/changelog +++ b/slave/process-affiliation-mapping/changelog @@ -1,3 +1,9 @@ +perun-slave-process-affiliation-mapping (3.1.2) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-affiliation-mapping (3.1.1) stable; urgency=low * New package version for perun-slave-process-affiliation-mapping diff --git a/slave/process-afs-group/changelog b/slave/process-afs-group/changelog index ace7ab11..04d432ea 100644 --- a/slave/process-afs-group/changelog +++ b/slave/process-afs-group/changelog @@ -1,3 +1,9 @@ +perun-slave-process-afs-group (3.1.5) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-afs-group (3.1.4) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-afs/changelog b/slave/process-afs/changelog index 2e93e79b..dc98015f 100644 --- a/slave/process-afs/changelog +++ b/slave/process-afs/changelog @@ -1,3 +1,9 @@ +perun-slave-process-afs (3.1.9) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-afs (3.1.8) stable; urgency=medium * Fixed escaping in echo of failed commands diff --git a/slave/process-apache-basic-auth/changelog b/slave/process-apache-basic-auth/changelog index f1118fc6..642b1973 100644 --- a/slave/process-apache-basic-auth/changelog +++ b/slave/process-apache-basic-auth/changelog @@ -1,3 +1,9 @@ +perun-slave-process-apache-basic-auth (3.1.5) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-apache-basic-auth (3.1.4) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-apache-shibboleth/changelog b/slave/process-apache-shibboleth/changelog index 1815b738..7689b5fc 100644 --- a/slave/process-apache-shibboleth/changelog +++ b/slave/process-apache-shibboleth/changelog @@ -1,3 +1,9 @@ +perun-slave-process-apache-shibboleth (3.1.3) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-apache-shibboleth (3.1.2) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-apache-ssl/changelog b/slave/process-apache-ssl/changelog index ca0aac8f..3da26c8e 100644 --- a/slave/process-apache-ssl/changelog +++ b/slave/process-apache-ssl/changelog @@ -1,3 +1,9 @@ +perun-slave-process-apache-ssl (3.1.5) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-apache-ssl (3.1.4) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-drupal-elixir/changelog b/slave/process-drupal-elixir/changelog index 8afb06cd..c546cecb 100644 --- a/slave/process-drupal-elixir/changelog +++ b/slave/process-drupal-elixir/changelog @@ -1,3 +1,9 @@ +perun-slave-process-drupal-elixir (3.1.8) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 19 Jan 2023 08:30:00 +0100 + perun-slave-process-drupal-elixir (3.1.7) stable; urgency=low * upon finding duplicates the script now exits with an ok error code to prevent rerun of propagation with the same data diff --git a/slave/process-eduroam-block/changelog b/slave/process-eduroam-block/changelog index 740f77e3..8f7095ab 100644 --- a/slave/process-eduroam-block/changelog +++ b/slave/process-eduroam-block/changelog @@ -1,3 +1,9 @@ +perun-slave-process-eduroam-block (3.0.3) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-eduroam-block (3.0.2) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-eduroam-radius/changelog b/slave/process-eduroam-radius/changelog index f0affc4f..43008836 100644 --- a/slave/process-eduroam-radius/changelog +++ b/slave/process-eduroam-radius/changelog @@ -1,3 +1,9 @@ +perun-slave-process-eduroam-radius (3.1.5) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-eduroam-radius (3.1.4) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-fs-home/changelog b/slave/process-fs-home/changelog index ec8eb63d..0a3d114f 100644 --- a/slave/process-fs-home/changelog +++ b/slave/process-fs-home/changelog @@ -1,3 +1,9 @@ +perun-slave-process-fs-home (3.1.11) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-fs-home (3.1.10) stable; urgency=low * It is now possible to skip creating a home directory from mid hook. @@ -15,12 +21,12 @@ perun-slave-process-fs-home (3.1.9) stable; urgency=high * some arguments as user login, home mount point, gid etc. were removed from quotas template in script and also in pre script * this version of service fs_home supports new quotas attributes in Perun, - although format of data in the file is the same. To active it administrator + although format of data in the file is the same. To active it administrator has to set attribute readyForNewQuotas on Facility to 'true' * Protocol version was increased, new format is not supported with older versions of protocol communication - * IMPORTANT: pre|post scripts and mid hooks can be also affected by these - changes and administrator should check and modify their behavior before + * IMPORTANT: pre|post scripts and mid hooks can be also affected by these + changes and administrator should check and modify their behavior before updating to this version -- Michal Stava Tue, 02 Apr 2019 13:25:00 +0200 diff --git a/slave/process-fs-project/changelog b/slave/process-fs-project/changelog index e93d9723..34c45bd0 100644 --- a/slave/process-fs-project/changelog +++ b/slave/process-fs-project/changelog @@ -1,3 +1,9 @@ +perun-slave-process-fs-project (3.1.8) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-fs-project (3.1.7) stable; urgency=medium * Changed architecture to all @@ -6,7 +12,7 @@ perun-slave-process-fs-project (3.1.7) stable; urgency=medium perun-slave-process-fs-project (3.1.6) stable; urgency=high - * setfacl need to set also permissions for owner itself, not just user. + * setfacl need to set also permissions for owner itself, not just user. This will prevent situation where owner can't access own directory. -- Michal Stava Tue, 09 Oct 2018 14:10:00 +0200 diff --git a/slave/process-fs-quotas/changelog b/slave/process-fs-quotas/changelog index deb34605..949d9e62 100644 --- a/slave/process-fs-quotas/changelog +++ b/slave/process-fs-quotas/changelog @@ -1,3 +1,9 @@ +perun-slave-process-fs-quotas (3.1.5) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-fs-quotas (3.1.4) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-fs-scratch-local/changelog b/slave/process-fs-scratch-local/changelog index 2ad816fe..413dfce2 100644 --- a/slave/process-fs-scratch-local/changelog +++ b/slave/process-fs-scratch-local/changelog @@ -1,6 +1,12 @@ +perun-slave-process-fs-scratch-local (3.1.8) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-fs-scratch-local (3.1.7) stable; urgency=low - * Remove quotas from slave script. This part of service fs-scratch-local + * Remove quotas from slave script. This part of service fs-scratch-local is not used correctly and will be reworked in the future. * Protocol version was increased because input data were changed. diff --git a/slave/process-fs-scratch/changelog b/slave/process-fs-scratch/changelog index f269069a..b9bdb2b2 100644 --- a/slave/process-fs-scratch/changelog +++ b/slave/process-fs-scratch/changelog @@ -1,6 +1,12 @@ +perun-slave-process-fs-scratch (3.1.8) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-fs-scratch (3.1.7) stable; urgency=low - * Remove quotas from slave script. This part of service fs-scratch + * Remove quotas from slave script. This part of service fs-scratch is not used correctly and will be reworked in the future. * Protocol version was increased because input data were changed. diff --git a/slave/process-group-nfs4/changelog b/slave/process-group-nfs4/changelog index dba35fea..283eb081 100644 --- a/slave/process-group-nfs4/changelog +++ b/slave/process-group-nfs4/changelog @@ -1,3 +1,9 @@ +perun-slave-process-group-nfs4 (3.1.7) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-group-nfs4 (3.1.6) stable; urgency=medium * Changed architecture to all @@ -13,7 +19,7 @@ perun-slave-process-group-nfs4 (3.1.5) stable; urgency=low perun-slave-process-group-nfs4 (3.1.4) stable; urgency=high * Use more gidRanges instead of one limited by min and max gid. - * Major protocol version was increased (this change will not work with + * Major protocol version was increased (this change will not work with older protocol versions) -- Michal Stava Wed, 17 Jan 2018 15:31:00 +0100 diff --git a/slave/process-group/changelog b/slave/process-group/changelog index fceea08d..f4bb09c4 100644 --- a/slave/process-group/changelog +++ b/slave/process-group/changelog @@ -1,3 +1,9 @@ +perun-slave-process-group (3.1.7) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-group (3.1.6) stable; urgency=medium * Changed architecture to all @@ -13,7 +19,7 @@ perun-slave-process-group (3.1.5) stable; urgency=low perun-slave-process-group (3.1.4) stable; urgency=high * Use more gidRanges instead of one limited by min and max gid. - * Major protocol version was increased (this change will not work with + * Major protocol version was increased (this change will not work with older protocol versions) -- Michal Stava Wed, 17 Jan 2018 15:31:00 +0100 diff --git a/slave/process-hadoop-hbase/changelog b/slave/process-hadoop-hbase/changelog index 48b3349e..029e100b 100644 --- a/slave/process-hadoop-hbase/changelog +++ b/slave/process-hadoop-hbase/changelog @@ -1,3 +1,9 @@ +perun-slave-process-hadoop-hbase (1.0.2) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-hadoop-hbase (1.0.1) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-hadoop-hdfs/changelog b/slave/process-hadoop-hdfs/changelog index 302b5f99..19a1da31 100644 --- a/slave/process-hadoop-hdfs/changelog +++ b/slave/process-hadoop-hdfs/changelog @@ -1,3 +1,9 @@ +perun-slave-process-hadoop-hdfs (1.0.2) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-hadoop-hdfs (1.0.1) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-k5login-generic/changelog b/slave/process-k5login-generic/changelog index ee8d8bc0..59b58bf1 100644 --- a/slave/process-k5login-generic/changelog +++ b/slave/process-k5login-generic/changelog @@ -1,3 +1,9 @@ +perun-slave-process-k5login-generic (3.1.6) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-k5login-generic (3.1.5) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-k5login-root/changelog b/slave/process-k5login-root/changelog index be435656..35850174 100644 --- a/slave/process-k5login-root/changelog +++ b/slave/process-k5login-root/changelog @@ -1,3 +1,9 @@ +perun-slave-process-k5login-root (3.1.6) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-k5login-root (3.1.5) stable; urgency=low * Add possibility to change destination file (default is /root/.k5login). diff --git a/slave/process-k5login/changelog b/slave/process-k5login/changelog index 6b08d3e3..95cc0b66 100644 --- a/slave/process-k5login/changelog +++ b/slave/process-k5login/changelog @@ -1,3 +1,9 @@ +perun-slave-process-k5login (3.1.10) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-k5login (3.1.9) stable; urgency=medium * Check k5login file exists before trying to crosscheck its entries diff --git a/slave/process-kerberos-renewal-principals/changelog b/slave/process-kerberos-renewal-principals/changelog index bce7eec2..8dd0391e 100644 --- a/slave/process-kerberos-renewal-principals/changelog +++ b/slave/process-kerberos-renewal-principals/changelog @@ -1,3 +1,9 @@ +perun-slave-process-kerberos-renewal-principals (3.0.2) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-kerberos-renewal-principals (3.0.1) stable; urgency=low * Handled receive of many files from perun. diff --git a/slave/process-ldap-vsb-vi/changelog b/slave/process-ldap-vsb-vi/changelog index 56b88e13..71e4ca82 100644 --- a/slave/process-ldap-vsb-vi/changelog +++ b/slave/process-ldap-vsb-vi/changelog @@ -1,3 +1,9 @@ +perun-slave-process-ldap-vsb-vi (3.1.6) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-ldap-vsb-vi (3.1.5) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-ldap/changelog b/slave/process-ldap/changelog index 83883ad2..58bf191d 100644 --- a/slave/process-ldap/changelog +++ b/slave/process-ldap/changelog @@ -1,3 +1,9 @@ +perun-slave-process-ldap (3.1.4) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-ldap (3.1.3) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-mailaliases-generic/changelog b/slave/process-mailaliases-generic/changelog index 02f4b2a0..d2b26ba3 100644 --- a/slave/process-mailaliases-generic/changelog +++ b/slave/process-mailaliases-generic/changelog @@ -1,3 +1,9 @@ +perun-slave-process-mailaliases-generic (3.1.6) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-mailaliases-generic (3.1.5) stable; urgency=low * Add possibility to change destination file (default is diff --git a/slave/process-mailaliases/changelog b/slave/process-mailaliases/changelog index 222b211e..e8c8aad8 100644 --- a/slave/process-mailaliases/changelog +++ b/slave/process-mailaliases/changelog @@ -1,3 +1,9 @@ +perun-slave-process-mailaliases (3.1.5) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-mailaliases (3.1.4) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-mailman-cesnet-user-mail/changelog b/slave/process-mailman-cesnet-user-mail/changelog index 7b6c040b..487aa93a 100644 --- a/slave/process-mailman-cesnet-user-mail/changelog +++ b/slave/process-mailman-cesnet-user-mail/changelog @@ -1,3 +1,9 @@ +perun-slave-process-mailman-cesnet-user-mail (3.0.1) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-mailman-cesnet-user-mail (3.0.0) stable; urgency=low * Service manages mailing lists in mailman. diff --git a/slave/process-mailman-cesnet/changelog b/slave/process-mailman-cesnet/changelog index d2458420..accb39d3 100644 --- a/slave/process-mailman-cesnet/changelog +++ b/slave/process-mailman-cesnet/changelog @@ -1,3 +1,9 @@ +perun-slave-process-mailman-cesnet (3.1.7) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-mailman-cesnet (3.1.6) stable; urgency=low * Removed handling of expiration and loa for hardcoded diff --git a/slave/process-mailman-meta/changelog b/slave/process-mailman-meta/changelog index 43e9f75a..eab121df 100644 --- a/slave/process-mailman-meta/changelog +++ b/slave/process-mailman-meta/changelog @@ -1,3 +1,9 @@ +perun-slave-process-mailman-meta (3.1.6) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-mailman-meta (3.1.5) stable; urgency=low * Removed handling of expiration and loa for hardcoded diff --git a/slave/process-mailman-mu/changelog b/slave/process-mailman-mu/changelog index dc3c65d9..6b89a319 100644 --- a/slave/process-mailman-mu/changelog +++ b/slave/process-mailman-mu/changelog @@ -1,3 +1,9 @@ +perun-slave-process-mailman-mu (3.1.1) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-mailman-mu (3.1.0) stable; urgency=low * New package version for perun-slave-process-mu diff --git a/slave/process-mailman-owners/changelog b/slave/process-mailman-owners/changelog index 61340f0a..ad4376bf 100644 --- a/slave/process-mailman-owners/changelog +++ b/slave/process-mailman-owners/changelog @@ -1,3 +1,9 @@ +perun-slave-process-mailman-owners (3.1.5) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-mailman-owners (3.1.4) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-mailman/changelog b/slave/process-mailman/changelog index 913fb222..9bdf691c 100644 --- a/slave/process-mailman/changelog +++ b/slave/process-mailman/changelog @@ -1,3 +1,9 @@ +perun-slave-process-mailman (3.1.4) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-mailman (3.1.3) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-o365-contacts-export/changelog b/slave/process-o365-contacts-export/changelog index 05ae0c44..049c65a9 100644 --- a/slave/process-o365-contacts-export/changelog +++ b/slave/process-o365-contacts-export/changelog @@ -1,3 +1,9 @@ +perun-slave-process-o365-contacts-export (3.0.2) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-o365-contacts-export (3.0.1) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-o365-mail-forward-export/changelog b/slave/process-o365-mail-forward-export/changelog index ac2132d0..c52a4f4e 100644 --- a/slave/process-o365-mail-forward-export/changelog +++ b/slave/process-o365-mail-forward-export/changelog @@ -1,3 +1,9 @@ +perun-slave-process-o365-mail-forward-export (3.1.2) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-o365-mail-forward-export (3.1.1) stable; urgency=low * New package for service o365-mail-forward-export diff --git a/slave/process-o365-mu-account-status/changelog b/slave/process-o365-mu-account-status/changelog index f3665469..1ed1fa5d 100644 --- a/slave/process-o365-mu-account-status/changelog +++ b/slave/process-o365-mu-account-status/changelog @@ -1,3 +1,9 @@ +perun-slave-process-o365-mu-account-status (3.1.2) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-o365-mu-account-status (3.1.1) stable; urgency=low * New package version for perun-slave-process-o365-mu-account-status diff --git a/slave/process-o365/changelog b/slave/process-o365/changelog index e53563dd..7eb0ae54 100644 --- a/slave/process-o365/changelog +++ b/slave/process-o365/changelog @@ -1,3 +1,9 @@ +perun-slave-process-o365 (3.1.3) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-o365 (3.1.2) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-oidc-with-groups-einfra/changelog b/slave/process-oidc-with-groups-einfra/changelog index 9d015494..719b691b 100644 --- a/slave/process-oidc-with-groups-einfra/changelog +++ b/slave/process-oidc-with-groups-einfra/changelog @@ -1,3 +1,9 @@ +perun-slave-process-oidc-with-groups-einfra (3.0.1) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-oidc-with-groups-einfra (3.0.0) stable; urgency=low * New slave script for oidc-with-groups-einfra diff --git a/slave/process-operations-portal-egi/changelog b/slave/process-operations-portal-egi/changelog index 9be05f5d..12f97743 100644 --- a/slave/process-operations-portal-egi/changelog +++ b/slave/process-operations-portal-egi/changelog @@ -1,3 +1,9 @@ +perun-slave-process-operations-portal-egi (3.1.6) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-operations-portal-egi (3.1.5) stable; urgency=medium * Changed architecture to all @@ -21,7 +27,7 @@ perun-slave-process-operations-portal-egi (3.1.3) stable; urgency=low perun-slave-process-operations-portal-egi (3.1.2) stable; urgency=medium - * Fix detection whether DST_FILE variable is set. + * Fix detection whether DST_FILE variable is set. -- Slavek Licehammer Mon, 21 Mar 2016 11:05:17 +0100 diff --git a/slave/process-passwd-nfs4/changelog b/slave/process-passwd-nfs4/changelog index 129c004f..84a27a0e 100644 --- a/slave/process-passwd-nfs4/changelog +++ b/slave/process-passwd-nfs4/changelog @@ -1,3 +1,9 @@ +perun-slave-process-passwd-nfs4 (3.1.5) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-passwd-nfs4 (3.1.4) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-passwd-scp/changelog b/slave/process-passwd-scp/changelog index 1a784967..a0e97c8c 100644 --- a/slave/process-passwd-scp/changelog +++ b/slave/process-passwd-scp/changelog @@ -1,3 +1,9 @@ +perun-slave-process-passwd-scp (3.1.5) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-passwd-scp (3.1.4) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-passwd/changelog b/slave/process-passwd/changelog index 51cff2e3..a328fc89 100644 --- a/slave/process-passwd/changelog +++ b/slave/process-passwd/changelog @@ -1,3 +1,9 @@ +perun-slave-process-passwd (3.1.5) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-passwd (3.1.4) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-pbs-publication-fairshare/changelog b/slave/process-pbs-publication-fairshare/changelog index 68f80939..1ae52a57 100644 --- a/slave/process-pbs-publication-fairshare/changelog +++ b/slave/process-pbs-publication-fairshare/changelog @@ -1,3 +1,9 @@ +perun-slave-process-pbs-publication-fairshare (3.1.6) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-pbs-publication-fairshare (3.1.5) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-pbsmon-json/changelog b/slave/process-pbsmon-json/changelog index 17a53471..c98a4f12 100644 --- a/slave/process-pbsmon-json/changelog +++ b/slave/process-pbsmon-json/changelog @@ -1,3 +1,9 @@ +perun-slave-process-pbsmon-json (3.1.5) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-pbsmon-json (3.1.4) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-pbsmon-users/changelog b/slave/process-pbsmon-users/changelog index 0e1db0bd..bb15a82d 100644 --- a/slave/process-pbsmon-users/changelog +++ b/slave/process-pbsmon-users/changelog @@ -1,3 +1,9 @@ +perun-slave-process-pbsmon-users (3.1.5) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-pbsmon-users (3.1.4) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-puppet-dashboard/changelog b/slave/process-puppet-dashboard/changelog index b76ddf27..89016436 100644 --- a/slave/process-puppet-dashboard/changelog +++ b/slave/process-puppet-dashboard/changelog @@ -1,3 +1,9 @@ +perun-slave-process-puppet-dashboard (3.1.3) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-puppet-dashboard (3.1.2) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-rt-bbmri/changelog b/slave/process-rt-bbmri/changelog index 805143f8..1d23840e 100644 --- a/slave/process-rt-bbmri/changelog +++ b/slave/process-rt-bbmri/changelog @@ -1,3 +1,9 @@ +perun-slave-process-rt-bbmri (3.1.4) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-rt-bbmri (3.1.3) stable; urgency=low * Updated protocol version to match new data format. diff --git a/slave/process-rt-data-vocesnet/changelog b/slave/process-rt-data-vocesnet/changelog index 4e83f758..f2418fb0 100644 --- a/slave/process-rt-data-vocesnet/changelog +++ b/slave/process-rt-data-vocesnet/changelog @@ -1,3 +1,9 @@ +perun-slave-process-rt-data-vocesnet (3.0.2) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-rt-data-vocesnet (3.0.1) stable; urgency=low * Define variables before error messages so they get expanded diff --git a/slave/process-rt/changelog b/slave/process-rt/changelog index c9f0e377..d186be12 100644 --- a/slave/process-rt/changelog +++ b/slave/process-rt/changelog @@ -1,3 +1,9 @@ +perun-slave-process-rt (3.1.3) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-rt (3.1.2) stable; urgency=low * Support changing of the output-file name. We are still using the same diff --git a/slave/process-scim/changelog b/slave/process-scim/changelog index ef85a395..9b344e6a 100755 --- a/slave/process-scim/changelog +++ b/slave/process-scim/changelog @@ -1,3 +1,9 @@ +perun-slave-process-scim (3.0.1) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-scim (3.0.0) stable; urgency=low * Added service perun-slave-scim, it process data sent by the Perun in SCIM format. diff --git a/slave/process-sshkeys-generic/changelog b/slave/process-sshkeys-generic/changelog index c5b1065a..ba393fb0 100644 --- a/slave/process-sshkeys-generic/changelog +++ b/slave/process-sshkeys-generic/changelog @@ -1,3 +1,9 @@ +perun-slave-process-sshkeys-generic (3.1.2) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-sshkeys-generic (3.1.1) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-sshkeys-root/changelog b/slave/process-sshkeys-root/changelog index 3d2c6290..461f0721 100644 --- a/slave/process-sshkeys-root/changelog +++ b/slave/process-sshkeys-root/changelog @@ -1,3 +1,9 @@ +perun-slave-process-sshkeys-root (3.1.7) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-sshkeys-root (3.1.6) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-sshkeys/changelog b/slave/process-sshkeys/changelog index 37c980b1..6372f2bf 100644 --- a/slave/process-sshkeys/changelog +++ b/slave/process-sshkeys/changelog @@ -1,3 +1,9 @@ +perun-slave-process-sshkeys (3.1.8) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-sshkeys (3.1.7) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-sympa/changelog b/slave/process-sympa/changelog index 2dd730e0..9265d06b 100644 --- a/slave/process-sympa/changelog +++ b/slave/process-sympa/changelog @@ -1,3 +1,9 @@ +perun-slave-process-sympa (3.1.7) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-sympa (3.1.6) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-users-emails/changelog b/slave/process-users-emails/changelog index e0023ea0..1aa07306 100644 --- a/slave/process-users-emails/changelog +++ b/slave/process-users-emails/changelog @@ -1,3 +1,9 @@ +perun-slave-process-users-emails (3.1.3) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-users-emails (3.1.2) stable; urgency=low * Define variables before error messages so they get expanded diff --git a/slave/process-vmware-ldap/changelog b/slave/process-vmware-ldap/changelog index 229a8e27..34623abc 100644 --- a/slave/process-vmware-ldap/changelog +++ b/slave/process-vmware-ldap/changelog @@ -1,3 +1,9 @@ +perun-slave-process-vmware-ldap (1.0.1) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-vmware-ldap (1.0.0) stable; urgency=low * New service for provisioning of LDAP for VMware. diff --git a/slave/process-voms-dirac/changelog b/slave/process-voms-dirac/changelog index 6f95572a..5eaed190 100644 --- a/slave/process-voms-dirac/changelog +++ b/slave/process-voms-dirac/changelog @@ -1,3 +1,9 @@ +perun-slave-process-voms-dirac (1.0.6) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-voms-dirac (1.0.5) stable; urgency=medium * Changed architecture to all diff --git a/slave/process-voms/changelog b/slave/process-voms/changelog index 63e7cbde..116fa316 100644 --- a/slave/process-voms/changelog +++ b/slave/process-voms/changelog @@ -1,3 +1,9 @@ +perun-slave-process-voms (3.1.14) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-voms (3.1.13) stable; urgency=medium * Sort user records by CA, so that matching DNs issued by different @@ -23,9 +29,9 @@ perun-slave-process-voms (3.1.10) stable; urgency=high * change path for exec script to be manually set on "voms", because the value in the variable $SERVICE can be set to different value if "voms_dirac" service has been called and executing script then can't be found. - * set correct protocol version (was forgotten to increase it) in voms slave - script to 3.1.1. This is just a minor difference in protocol version is - it has no impact on script behavior. + * set correct protocol version (was forgotten to increase it) in voms slave + script to 3.1.1. This is just a minor difference in protocol version is + it has no impact on script behavior. -- Michal Stava Tue, 30 Jan 2018 17:12:00 +0100 diff --git a/slave/process-yubikey-root/changelog b/slave/process-yubikey-root/changelog index 2f12bb45..a6fb95ba 100644 --- a/slave/process-yubikey-root/changelog +++ b/slave/process-yubikey-root/changelog @@ -1,3 +1,9 @@ +perun-slave-process-yubikey-root (3.1.3) stable; urgency=low + + * Fixed package priority from 'extra' to 'optional'. + + -- Pavel Zlamal Thu, 18 Aug 2022 09:00:00 +0200 + perun-slave-process-yubikey-root (3.1.2) stable; urgency=medium * Changed architecture to all diff --git a/slave/templates/dh_make/control b/slave/templates/dh_make/control index 208bacaf..acfe2478 100644 --- a/slave/templates/dh_make/control +++ b/slave/templates/dh_make/control @@ -1,6 +1,6 @@ Source: #PACKAGE# Section: utils -Priority: extra +Priority: optional Maintainer: #USERNAME# <#EMAIL#> Build-Depends: #BUILD_DEPS# Standards-Version: #POLICY# diff --git a/slave/templates/equivs/control b/slave/templates/equivs/control index d276cf11..279f7768 100644 --- a/slave/templates/equivs/control +++ b/slave/templates/equivs/control @@ -1,8 +1,8 @@ Source: ${PACKAGE_NAME} Section: utils -Priority: extra +Priority: optional Maintainer: Michal Stava -Standards-Version: 3.9.2 +Standards-Version: 3.9.5 Package: ${PACKAGE_NAME} Architecture: all