aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-02-15 16:50:07 -0500
committerB. Stack <bgstack15@gmail.com>2022-02-15 16:50:07 -0500
commit81118e33ae076c11c429d608e45343416add8eb1 (patch)
tree76e09b7579c88fbb1195cb9b5fc67a859c44ae7d
parentsplit auth into separate python file (diff)
downloadstackbin-81118e33ae076c11c429d608e45343416add8eb1.tar.gz
stackbin-81118e33ae076c11c429d608e45343416add8eb1.tar.bz2
stackbin-81118e33ae076c11c429d608e45343416add8eb1.zip
install this new auth.py
-rw-r--r--extra/Makefile2
-rw-r--r--extra/stackbin.spec2
2 files changed, 2 insertions, 2 deletions
diff --git a/extra/Makefile b/extra/Makefile
index d55b8c6..7eddb38 100644
--- a/extra/Makefile
+++ b/extra/Makefile
@@ -86,7 +86,7 @@ install_files:
${installbin} -m0755 -d ${LOGDIR} ${APPVARDIR} ${APPDIR}/static ${APPDIR}/templates \
${DOCDIR} ${SBINDIR} ${SYSCONFDIR} ${LIBEXECDIR}/${APPNAME}
${installbin} -m0755 -t ${SBINDIR} ${SRCDIR}/${APPNAME}.bin
- ${installbin} -m0644 -t ${LIBEXECDIR}/${APPNAME} ${SRCDIR}/${APPNAME}.py
+ ${installbin} -m0644 -t ${LIBEXECDIR}/${APPNAME} ${SRCDIR}/${APPNAME}.py ${SRCDIR}/${APPNAME}_auth.py
${installbin} -m0644 ${SRCDIR}/${APPNAME}.conf.example ${SYSCONFDIR}/${APPNAME}.conf
${installbin} -m0644 ${SRCDIR}/${APPNAME}.wsgi.ini.example ${SYSCONFDIR}/${APPNAME}.wsgi.ini
${installbin} -m0644 -t ${DOCDIR} ${SRCDIR}/*.md
diff --git a/extra/stackbin.spec b/extra/stackbin.spec
index 505878d..41bad2a 100644
--- a/extra/stackbin.spec
+++ b/extra/stackbin.spec
@@ -137,7 +137,7 @@ exit 0
%endif
%attr(0644, %{_user}, %{_user}) %config(noreplace) %{_sysconfdir}/%{name}.conf
%attr(0644, %{_user}, %{_user}) %config(noreplace) %{_sysconfdir}/%{name}.wsgi.ini
-%attr(0644, %{_user}, %{_user}) %{_libexecdir}/%{name}/%{name}.py
+%attr(0644, %{_user}, %{_user}) %{_libexecdir}/%{name}/*.py
%attr(0755, %{_user}, %{_user}) %{_sbindir}/%{name}.bin
%attr(0644, %{_user}, %{_user}) %{_appdir}/static/*
%attr(0644, %{_user}, %{_user}) %{_appdir}/templates/*
bgstack15