Remove unavailable option from vncserver script

This commit is contained in:
Jan Grulich 2022-01-14 19:57:52 +01:00
parent b88f0100f9
commit 3f5ed30c8b
2 changed files with 5 additions and 3 deletions

View File

@ -4,7 +4,7 @@
Name: tigervnc Name: tigervnc
Version: 1.12.0 Version: 1.12.0
Release: 2%{?dist} Release: 3%{?dist}
Summary: A TigerVNC remote display system Summary: A TigerVNC remote display system
%global _hardened_build 1 %global _hardened_build 1
@ -323,7 +323,10 @@ fi
%ghost %verify(not md5 size mtime) %{_sharedstatedir}/selinux/%{selinuxtype}/active/modules/200/%{modulename} %ghost %verify(not md5 size mtime) %{_sharedstatedir}/selinux/%{selinuxtype}/active/modules/200/%{modulename}
%changelog %changelog
* Fri Jan 14 2021 Jan Grulich <jgrulich@redhat.com> - 1.12.0-2 * Fri Jan 14 2022 Jan Grulich <jgrulich@redhat.com> - 1.12.0-3
- Remove unavailable option from vncserver script
* Fri Jan 14 2022 Jan Grulich <jgrulich@redhat.com> - 1.12.0-2
- SELinux: restore SELinux context in case of different policies - SELinux: restore SELinux context in case of different policies
* Thu Nov 11 2021 Jan Grulich <jgrulich@redhat.com> - 1.12.0-1 * Thu Nov 11 2021 Jan Grulich <jgrulich@redhat.com> - 1.12.0-1

View File

@ -194,7 +194,6 @@ $default_opts{auth} = &quotedString($xauthorityFile);
$default_opts{geometry} = $geometry if ($geometry); $default_opts{geometry} = $geometry if ($geometry);
$default_opts{depth} = $depth if ($depth); $default_opts{depth} = $depth if ($depth);
$default_opts{pixelformat} = $pixelformat if ($pixelformat); $default_opts{pixelformat} = $pixelformat if ($pixelformat);
$default_opts{rfbwait} = 30000;
$default_opts{rfbauth} = "$vncUserDir/passwd"; $default_opts{rfbauth} = "$vncUserDir/passwd";
$default_opts{rfbport} = $vncPort; $default_opts{rfbport} = $vncPort;
$default_opts{fp} = $fontPath if ($fontPath); $default_opts{fp} = $fontPath if ($fontPath);