-
Notifications
You must be signed in to change notification settings - Fork 39
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 #314 from brianhlin/SOFTWARE-3939.ssl-advertise
Fix central collector SSL advertising (SOFTWARE-3939); remove config generator
- Loading branch information
Showing
12 changed files
with
18 additions
and
466 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -7,24 +7,8 @@ | |
# | ||
############################################################################### | ||
|
||
MYOSG_HOST = my.opensciencegrid.org | ||
MYOSG_URL = http://$(MYOSG_HOST)/rgsummary/xml?gridtype=on&gridtype_1=on&service=on&service_sel%5B%5D=1&active=on&active_value=1&disable=on&disable_value=0 | ||
|
||
# Should the config generator issue a "condor_ce_reconfig" afterward? | ||
GENERATOR_RECONFIG = true | ||
|
||
# To BAN a host, add a line of the form: | ||
# | ||
# DENY_ADVERTISE_SCHEDD = $(DENY_ADVERTISE_SCHEDD), [email protected] | ||
# | ||
# You can have multiple comma-separated hosts in the DENY listing. | ||
|
||
# To ADD a custom host, add a line of the form: | ||
# | ||
# COLLECTOR.ALLOW_ADVERTISE_SCHEDD = $(COLLECTOR.ALLOW_ADVERTISE_SCHEDD), [email protected]/ce.example.com | ||
# | ||
# You can have multiple comma-separated hosts in the ALLOW listing. | ||
|
||
# The COLLECTOR.ALLOW_ADVERTISE_SCHEDD lines should be of the form: | ||
# | ||
# COLLECTOR.ALLOW_ADVERTISE_SCHEDD = [email protected]/foo.example.com, [email protected]/bar.example.com |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
GSI (.*) GSS_ASSIST_GRIDMAP | ||
GSI "/CN=([-.A-Za-z0-9/= ]+)" \[email protected] | ||
SSL "/CN=([-.A-Za-z0-9/= ]+)" \[email protected] | ||
GSI "[-.A-Za-z0-9/= ]*/CN=([-.A-Za-z0-9/= ]+)" \[email protected] | ||
SSL "[-.A-Za-z0-9/= ]*/CN=([-.A-Za-z0-9/= ]+)" \[email protected] | ||
CLAIMTOBE .* anonymous@claimtobe | ||
FS "^(root|condor)$" \[email protected] | ||
FS "(.*)" \1 |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
#define gitrev osg | ||
|
||
Name: htcondor-ce | ||
Version: 4.2.0 | ||
Version: 4.2.1 | ||
Release: 1%{?gitrev:.%{gitrev}git}%{?dist} | ||
Summary: A framework to run HTCondor as a CE | ||
BuildArch: noarch | ||
|
@@ -422,21 +422,15 @@ install -m 0755 -d -p $RPM_BUILD_ROOT/%{_sysconfdir}/condor-ce/bosco_override | |
|
||
%files collector | ||
|
||
%{_bindir}/condor_ce_config_generator | ||
%{_datadir}/condor-ce/config.d/01-ce-collector-defaults.conf | ||
%{_datadir}/condor-ce/config.d/01-ce-auth-defaults.conf | ||
|
||
%{_unitdir}/condor-ce-collector.service | ||
%{_unitdir}/condor-ce-collector-config.service | ||
%{_unitdir}/condor-ce-collector-config.timer | ||
%{_tmpfilesdir}/condor-ce-collector.conf | ||
|
||
%config %{_datadir}/condor-ce/config.d/01-ce-collector-requirements.conf | ||
%config(noreplace) %{_datadir}/condor-ce/config.d/02-ce-collector-auth-generated.conf | ||
%config(noreplace) %{_sysconfdir}/sysconfig/condor-ce-collector | ||
%config(noreplace) %{_sysconfdir}/condor-ce/config.d/01-ce-collector.conf | ||
%config %{_sysconfdir}/condor-ce/config.d/04-ce-collector-auth.conf | ||
%config(noreplace) %{_sysconfdir}/logrotate.d/condor-ce-collector | ||
|
||
%attr(-,condor,condor) %dir %{_localstatedir}/run/condor-ce | ||
%attr(-,condor,condor) %dir %{_localstatedir}/log/condor-ce | ||
|
@@ -449,6 +443,10 @@ install -m 0755 -d -p $RPM_BUILD_ROOT/%{_sysconfdir}/condor-ce/bosco_override | |
%attr(1777,root,root) %dir %{_localstatedir}/lib/gratia/condorce_data | ||
|
||
%changelog | ||
* Wed Mar 18 2020 Brian Lin <[email protected]> - 4.2.1-1 | ||
- Drop vestigial central collector config generator | ||
- Fix unmapped GSI/SSL regexps and allow unmapped enttities to advertise to the central ceollector (SOFTWARE-3939) | ||
|
||
* Thu Mar 12 2020 Brian Lin <[email protected]> - 4.2.0-1 | ||
- Add SSL support for reporting to central collectors (SOFTWARE-3939) | ||
- GLUE2 validation improvements for the BDII provider (#308) | ||
|
Oops, something went wrong.