|
@@ -365,6 +365,11 @@ function set_login_umask {
|
365
|
365
|
sed -i 's|UMASK\t.*|UMASK\t\t077|g' /etc/login.defs
|
366
|
366
|
}
|
367
|
367
|
|
|
368
|
+function disable_deferred_execution {
|
|
369
|
+ systemctl stop atd
|
|
370
|
+ systemctl disable atd
|
|
371
|
+}
|
|
372
|
+
|
368
|
373
|
function setup_firewall {
|
369
|
374
|
function_check create_completion_file
|
370
|
375
|
create_completion_file
|
|
@@ -398,6 +403,9 @@ function setup_utils {
|
398
|
403
|
function_check set_login_umask
|
399
|
404
|
set_login_umask
|
400
|
405
|
|
|
406
|
+ function_check disable_deferred_execution
|
|
407
|
+ disable_deferred_execution
|
|
408
|
+
|
401
|
409
|
function_check turn_off_rsys_logging
|
402
|
410
|
turn_off_rsys_logging
|
403
|
411
|
|