mirror of
https://src.fedoraproject.org/rpms/nextcloud.git
synced 2025-01-25 17:55:49 +01:00
remove el7 support
This commit is contained in:
parent
cb9544c0d0
commit
0eba130f8a
@ -1,24 +0,0 @@
|
|||||||
[nextcloud]
|
|
||||||
user = apache
|
|
||||||
group = apache
|
|
||||||
listen = /run/php-fpm/nextcloud.sock
|
|
||||||
listen.allowed_clients = 127.0.0.1
|
|
||||||
pm = dynamic
|
|
||||||
pm.max_children = 50
|
|
||||||
pm.start_servers = 5
|
|
||||||
pm.min_spare_servers = 5
|
|
||||||
pm.max_spare_servers = 35
|
|
||||||
slowlog = /var/log/php-fpm/nextcloud-slow.log
|
|
||||||
php_admin_value[error_log] = /var/log/php-fpm/nextcloud-error.log
|
|
||||||
php_admin_flag[log_errors] = on
|
|
||||||
php_value[session.save_handler] = files
|
|
||||||
php_value[session.save_path] = /var/lib/php/session
|
|
||||||
php_value[soap.wsdl_cache_dir] = /var/lib/php/wsdlcache
|
|
||||||
php_value[upload_max_filesize] = 10G
|
|
||||||
php_value[post_max_size] = 10G
|
|
||||||
env[HOSTNAME] = $HOSTNAME
|
|
||||||
env[PATH] = /usr/local/bin:/usr/bin:/bin
|
|
||||||
env[TMP] = /tmp
|
|
||||||
env[TMPDIR] = /tmp
|
|
||||||
env[TEMP] = /tmp
|
|
||||||
|
|
@ -23,7 +23,6 @@ Source105: %{name}-defaults.inc
|
|||||||
Source200: %{name}-default-nginx.conf
|
Source200: %{name}-default-nginx.conf
|
||||||
Source201: %{name}-conf-nginx.conf
|
Source201: %{name}-conf-nginx.conf
|
||||||
Source202: %{name}-php-fpm.conf
|
Source202: %{name}-php-fpm.conf
|
||||||
Source203: %{name}-el7-php-fpm.conf
|
|
||||||
# packaging notes and doc
|
# packaging notes and doc
|
||||||
Source300: %{name}-README.fedora
|
Source300: %{name}-README.fedora
|
||||||
Source301: %{name}-mysql.txt
|
Source301: %{name}-mysql.txt
|
||||||
@ -38,7 +37,11 @@ Patch1: 0001-mangle-shebang.patch
|
|||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# For the systemd macros
|
# For the systemd macros
|
||||||
|
%if 0%{?fedora} > 29
|
||||||
|
BuildRequires: systemd-rpm-macros
|
||||||
|
%else
|
||||||
BuildRequires: systemd
|
BuildRequires: systemd
|
||||||
|
%endif
|
||||||
# expand pear macros on install
|
# expand pear macros on install
|
||||||
BuildRequires: php-pear
|
BuildRequires: php-pear
|
||||||
|
|
||||||
@ -370,13 +373,8 @@ install -Dpm 644 %{SOURCE200} \
|
|||||||
%{buildroot}%{_sysconfdir}/nginx/default.d/%{name}.conf
|
%{buildroot}%{_sysconfdir}/nginx/default.d/%{name}.conf
|
||||||
install -Dpm 644 %{SOURCE201} \
|
install -Dpm 644 %{SOURCE201} \
|
||||||
%{buildroot}%{_sysconfdir}/nginx/conf.d/%{name}.conf
|
%{buildroot}%{_sysconfdir}/nginx/conf.d/%{name}.conf
|
||||||
%if 0%{?el7}
|
|
||||||
install -Dpm 644 %{SOURCE203} \
|
|
||||||
%{buildroot}%{_sysconfdir}/php-fpm.d/%{name}.conf
|
|
||||||
%else
|
|
||||||
install -Dpm 644 %{SOURCE202} \
|
install -Dpm 644 %{SOURCE202} \
|
||||||
%{buildroot}%{_sysconfdir}/php-fpm.d/%{name}.conf
|
%{buildroot}%{_sysconfdir}/php-fpm.d/%{name}.conf
|
||||||
%endif
|
|
||||||
|
|
||||||
# Install the systemd timer
|
# Install the systemd timer
|
||||||
install -Dpm 644 %{SOURCE2} %{buildroot}%{_unitdir}/nextcloud-cron.service
|
install -Dpm 644 %{SOURCE2} %{buildroot}%{_unitdir}/nextcloud-cron.service
|
||||||
@ -391,16 +389,8 @@ if [ $1 -eq 0 ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
%post nginx
|
%post nginx
|
||||||
%if 0%{?el7}
|
/usr/bin/systemctl reload nginx.service > /dev/null 2>&1 || :
|
||||||
# Work around missing php session directory for php-fpm in el7 bz#1338444
|
/usr/bin/systemctl reload php-fpm.service > /dev/null 2>&1 || :
|
||||||
if [ ! -d /var/lib/php/session ]
|
|
||||||
then
|
|
||||||
mkdir /var/lib/php/session
|
|
||||||
fi
|
|
||||||
/usr/bin/chown apache /var/lib/php/session
|
|
||||||
%endif
|
|
||||||
/usr/bin/systemctl reload nginx.service > /dev/null 2>&1 || :
|
|
||||||
/usr/bin/systemctl reload php-fpm.service > /dev/null 2>&1 || :
|
|
||||||
|
|
||||||
%postun nginx
|
%postun nginx
|
||||||
if [ $1 -eq 0 ]; then
|
if [ $1 -eq 0 ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user