00e523d4b1
- update to AppArmor 2.8.3 (r2122) bugfix release - fix some cache clearing bugs in apparmor_parser - various fixes in mod_apparmor - several profile updates, most of them were already included as patches (except abstractions/winbind (bnc#863226), abstractions/fonts and abstractions/p11-kit) - see http://wiki.apparmor.net/index.php/ReleaseNotes_2_8_3 for all details - update partially upstreamed apparmor-2.8.2-nm-dnsmasq-config.patch - remove upstream(ed) patches - apparmor-2.8.2-fix-ntpd-profile.diff - apparmor-abstractions-r2089-r2090.diff - apparmor-abstractions-ssl_certs.diff - apparmor-fix-url-in-manpages-r2093.diff - apparmor-no-perl-smartmatch-r2088.diff - apparmor-profiles-dnsmasq.diff - apparmor-profiles-ntpd-r2103.diff - apparmor-profiles-samba-create-dirs.diff - apparmor-profiles-samba4.diff - apparmor-unconfined-lang-r2094.diff - apparmor-utils-po-de-r2091.diff OBS-URL: https://build.opensuse.org/request/show/222637 OBS-URL: https://build.opensuse.org/package/show/security:apparmor/apparmor?expand=0&rev=80
25 lines
1.3 KiB
Plaintext
25 lines
1.3 KiB
Plaintext
From: Jeff Mahoney <jeffm@suse.com>
|
|
Subject: AppArmor.pm: Split long string
|
|
|
|
The string split here ends up not displaying well in yast.
|
|
---
|
|
utils/Immunix/AppArmor.pm | 7 ++++++-
|
|
1 file changed, 6 insertions(+), 1 deletion(-)
|
|
|
|
--- a/utils/Immunix/AppArmor.pm
|
|
+++ b/utils/Immunix/AppArmor.pm
|
|
@@ -6335,7 +6335,12 @@ sub check_qualifiers($) {
|
|
|
|
if ($cfg->{qualifiers}{$program}) {
|
|
unless($cfg->{qualifiers}{$program} =~ /p/) {
|
|
- fatal_error(sprintf(gettext("\%s is currently marked as a program that should not have it's own profile. Usually, programs are marked this way if creating a profile for them is likely to break the rest of the system. If you know what you're doing and are certain you want to create a profile for this program, edit the corresponding entry in the [qualifiers] section in /etc/apparmor/logprof.conf."), $program));
|
|
+ fatal_error(sprintf(gettext(
|
|
+"\%s is currently marked as a program that should not have its own\n".
|
|
+"profile. Usually, programs are marked this way if creating a profile for \n".
|
|
+"them is likely to break the rest of the system. If you know what you're\n".
|
|
+"doing and are certain you want to create a profile for this program, edit\n".
|
|
+"the corresponding entry in the [qualifiers] section in /etc/apparmor/logprof.conf."), $program));
|
|
}
|
|
}
|
|
}
|