Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lbnl-nhc.spec.in: Allow for normal user access #133

Merged
merged 1 commit into from
Apr 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion lbnl-nhc.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@
%{!?nhc_script_dir:%global nhc_script_dir %{_sysconfdir}/%{sname}/scripts}
%{!?nhc_helper_dir:%global nhc_helper_dir %{_libexecdir}/%{sname}}

### Build conditional(s)
# Should NHC be accessible for normal users' use?
%bcond_without useraccess


Summary: LBNL Node Health Check
Name: %{name}
Expand Down Expand Up @@ -79,7 +83,7 @@ project home page at https://github.com/mej/nhc


%install
umask 0077
umask %{?with_useraccess:0022}%{!?with_useraccess:0077}
%{__make} install DESTDIR=$RPM_BUILD_ROOT %{?mflags_install}


Expand Down