- Mouve lib & sbin out of usr,
- Remove usr dir, - Add urpmi-setup-dump.cgi.
This commit is contained in:
@@ -2,7 +2,9 @@
|
|||||||
Rx3-Base V 1.1.2 - A. GIBERT - 2026/04/??
|
Rx3-Base V 1.1.2 - A. GIBERT - 2026/04/??
|
||||||
------------------------------------------------------------------------------------------------------------------------------------
|
------------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
- Move sbin dir into usr,
|
- Move lib dir into top dir & remove usr,
|
||||||
|
- Add cgi-bin dir,
|
||||||
|
- Add urpmi-setup-dump.cgi and package it as example,
|
||||||
- URPMI-Setup:
|
- URPMI-Setup:
|
||||||
- Fix usage message.
|
- Fix usage message.
|
||||||
|
|
||||||
|
|||||||
@@ -99,11 +99,11 @@ cp etc/bash_completion.d/* %{buildroot}%{_sysconfdir}/bash_completi
|
|||||||
|
|
||||||
# Libs
|
# Libs
|
||||||
%{__mkdir_p} %{buildroot}%{_prefix}/lib/rx3
|
%{__mkdir_p} %{buildroot}%{_prefix}/lib/rx3
|
||||||
cp usr/lib/rx3/*.bash %{buildroot}%{_prefix}/lib/rx3
|
cp lib/rx3/*.bash %{buildroot}%{_prefix}/lib/rx3
|
||||||
|
|
||||||
# Bin
|
# Bin
|
||||||
%{__mkdir_p} %{buildroot}%{_sbindir}
|
%{__mkdir_p} %{buildroot}%{_sbindir}
|
||||||
cp usr/sbin/* %{buildroot}%{_sbindir}
|
cp sbin/* %{buildroot}%{_sbindir}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -114,7 +114,7 @@ cp usr/sbin/* %{buildroot}%{_sbindir}
|
|||||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc ReadMe.txt ReleaseNotes.txt ToDo.txt
|
%doc ReadMe.txt ReleaseNotes.txt ToDo.txt cgi-bin/urpmi-setup-dump.cgi
|
||||||
%license COPYING COPYING.LESSER GNU_GPL-3.0.txt GNU_LGPL-3.0.txt GNU_FDL-1.3.txt
|
%license COPYING COPYING.LESSER GNU_GPL-3.0.txt GNU_LGPL-3.0.txt GNU_FDL-1.3.txt
|
||||||
%defattr(644,root,root)
|
%defattr(644,root,root)
|
||||||
%{_sysconfdir}/profile.d/*
|
%{_sysconfdir}/profile.d/*
|
||||||
@@ -133,7 +133,8 @@ cp usr/sbin/* %{buildroot}%{_sbindir}
|
|||||||
%changelog
|
%changelog
|
||||||
* Thu Apr 16 2026 Arnaud G. GIBERT <arnaud@rx3.net> - 1.1.2-1rx3.mga9
|
* Thu Apr 16 2026 Arnaud G. GIBERT <arnaud@rx3.net> - 1.1.2-1rx3.mga9
|
||||||
- Update ro 1.1.2,
|
- Update ro 1.1.2,
|
||||||
- Use sbin from usr/sbin
|
- Move lib source dir
|
||||||
|
- Add cgi-bin example as doc
|
||||||
|
|
||||||
* Fri Apr 10 2026 Arnaud G. GIBERT <arnaud@rx3.net> - 1.1.1-1rx3.mga9
|
* Fri Apr 10 2026 Arnaud G. GIBERT <arnaud@rx3.net> - 1.1.1-1rx3.mga9
|
||||||
- Update to 1.1.1
|
- Update to 1.1.1
|
||||||
|
|||||||
61
cgi-bin/urpmi-setup-dump.cgi
Executable file
61
cgi-bin/urpmi-setup-dump.cgi
Executable file
@@ -0,0 +1,61 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# URPMI Setup CGI
|
||||||
|
#
|
||||||
|
# Copyright (C) 2026 Arnaud G. GIBERT
|
||||||
|
# mailto:arnaud@rx3.net
|
||||||
|
#
|
||||||
|
# This is free software: you can redistribute it and/or modify it
|
||||||
|
# under the terms of the GNU Lesser General Public License as published
|
||||||
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; If not, see
|
||||||
|
# <https://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
# Includes
|
||||||
|
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
: "${RX3_LIB_DIR:=/usr/lib/rx3}"
|
||||||
|
. "${RX3_LIB_DIR}/docker_tools.bash"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
# Main
|
||||||
|
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
echo "Content-type: text/plain"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if [[ -n "${QUERY_STRING}" ]]
|
||||||
|
then
|
||||||
|
if [[ "$QUERY_STRING" =~ ^[a-z0-9]+$ ]]
|
||||||
|
then
|
||||||
|
DISTRIB_OPT="-d ${QUERY_STRING}"
|
||||||
|
else
|
||||||
|
echo "Error: Invalid characters in query string."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
DISTRIB_OPT=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
urpmi-setup -v -D ${DISTRIB_OPT}
|
||||||
Reference in New Issue
Block a user