diff --git a/deprecated/utils/aa-genprof b/deprecated/utils/aa-genprof index 33046042b..a2225a7f7 100755 --- a/deprecated/utils/aa-genprof +++ b/deprecated/utils/aa-genprof @@ -138,7 +138,7 @@ my $ratelimit_saved = sysctl_read($ratelimit_sysctl); END { sysctl_write($ratelimit_sysctl, $ratelimit_saved); } sysctl_write($ratelimit_sysctl, 0); -UI_Info(gettext("\nBefore you begin, you may wish to check if a\nprofile already exists for the application you\nwish to confine. See the following wiki page for\nmore information:\nhttp://wiki.apparmor.net/index.php/Profiles")); +UI_Info(gettext("\nBefore you begin, you may wish to check if a\nprofile already exists for the application you\nwish to confine. See the following wiki page for\nmore information:\nhttps://gitlab.com/apparmor/apparmor/wikis/Profiles")); UI_Important(gettext("Please start the application to be profiled in \nanother window and exercise its functionality now.\n\nOnce completed, select the \"Scan\" button below in \norder to scan the system logs for AppArmor events. \n\nFor each AppArmor event, you will be given the \nopportunity to choose whether the access should be \nallowed or denied.")); @@ -195,7 +195,7 @@ for my $p (sort keys %helpers) { } UI_Info(gettext("Reloaded AppArmor profiles in enforce mode.")); -UI_Info(gettext("\nPlease consider contributing your new profile! See\nthe following wiki page for more information:\nhttp://wiki.apparmor.net/index.php/Profiles\n")); +UI_Info(gettext("\nPlease consider contributing your new profile! See\nthe following wiki page for more information:\nhttps://gitlab.com/apparmor/apparmor/wikis/Profiles\n")); UI_Info(sprintf(gettext('Finished generating profile for %s.'), $fqdbin)); exit 0; diff --git a/utils/aa-genprof b/utils/aa-genprof index 6fa309269..9e3279bc5 100755 --- a/utils/aa-genprof +++ b/utils/aa-genprof @@ -132,7 +132,7 @@ except PermissionError: # will fail in lxd atexit.register(restore_ratelimit) -aaui.UI_Info(_('\nBefore you begin, you may wish to check if a\nprofile already exists for the application you\nwish to confine. See the following wiki page for\nmore information:')+'\nhttp://wiki.apparmor.net/index.php/Profiles') +aaui.UI_Info(_('\nBefore you begin, you may wish to check if a\nprofile already exists for the application you\nwish to confine. See the following wiki page for\nmore information:')+'\nhttps://gitlab.com/apparmor/apparmor/wikis/Profiles') syslog = True logmark = '' @@ -173,6 +173,6 @@ for p in sorted(apparmor.helpers.keys()): apparmor.reload(p) aaui.UI_Info(_('\nReloaded AppArmor profiles in enforce mode.')) -aaui.UI_Info(_('\nPlease consider contributing your new profile!\nSee the following wiki page for more information:')+'\nhttp://wiki.apparmor.net/index.php/Profiles\n') +aaui.UI_Info(_('\nPlease consider contributing your new profile!\nSee the following wiki page for more information:')+'\nhttps://gitlab.com/apparmor/apparmor/wikis/Profiles\n') aaui.UI_Info(_('Finished generating profile for %s.')%program) sys.exit(0)