forked from EUDAT-B2SAFE/B2SAFE-core
-
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.
EUDAT-B2SAFE#131, fixed: extended exclude list, fixed install.json (c…
…ould no be processed by install.py)
- Loading branch information
Stefan Wolfsheimer
committed
Jul 24, 2019
1 parent
015e216
commit 428e579
Showing
1 changed file
with
12 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,9 +76,15 @@ rm -rf %{buildroot} | |
# default attributes | ||
%defattr(-,-,-,-) | ||
# files | ||
# exclude .pyc and .py files | ||
# exclude .pyc and .pyo files | ||
%exclude %{_irodsPackage}/packaging/*.pyc | ||
%exclude %{_irodsPackage}/packaging/*.pyo | ||
%exclude %{_irodsPackage}/cmd/*.pyc | ||
%exclude %{_irodsPackage}/cmd/*.pyo | ||
%exclude %{_irodsPackage}/cmd/*.pyo | ||
%exclude %{_irodsPackage}/cmd/Pipefile | ||
%exclude %{_irodsPackage}/cmd/Pipefile.lock | ||
%exclude %{_irodsPackage}/cmd/logs | ||
|
||
#include files | ||
%{_irodsPackage}/cmd | ||
%{_irodsPackage}/conf | ||
|
@@ -124,8 +130,9 @@ cat > $INSTALL_CONF << EOF | |
"handle_owner": "200:0.NA/<ZZZ>", | ||
"handle_reverse_lookup_name": "<ZZZ>", | ||
"handle_reverse_lookup_password": "<reverse_lookup_password>", | ||
"handle_https_verify": True, | ||
"handle_https_verify": "True", | ||
"handle_users": [ "user0#Zone0", "user1#Zone1" ], | ||
"handle_groups": [], | ||
"log_level": "INFO", | ||
"log_directory": "/var/log/irods", | ||
"shared_space": "", | ||
|
@@ -162,6 +169,8 @@ fi | |
|
||
|
||
%changelog | ||
* Wed Jul 24 2019 Stefan Wolfsheimer <[email protected]> 4.2.1 | ||
- exclude python object files, fix install.json | ||
* Tue Mar 26 2019 Robert Verkerk <[email protected]> 4.2.1 | ||
- add python installation/setup script. | ||
* Fri Mar 8 2019 Robert Verkerk <[email protected]> 4.2.1 | ||
|