Marcus Rueckert
f270973a6c
Accepted submit request 57745 from user jeff_mahoney OBS-URL: https://build.opensuse.org/request/show/57745 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/apparmor?expand=0&rev=1
25 lines
1.3 KiB
Plaintext
25 lines
1.3 KiB
Plaintext
From: Jeff Mahoney <jeffm@suse.com>
|
|
Subject: SubDomain.pm: Split long string
|
|
|
|
The string split here ends up not displaying well in yast.
|
|
---
|
|
utils/SubDomain.pm | 7 ++++++-
|
|
1 file changed, 6 insertions(+), 1 deletion(-)
|
|
|
|
--- a/utils/SubDomain.pm
|
|
+++ b/utils/SubDomain.pm
|
|
@@ -6241,7 +6241,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));
|
|
}
|
|
}
|
|
}
|