|
@@ -436,6 +436,10 @@ function disable_sctp {
|
436
|
436
|
echo "install sctp /bin/true" > /etc/modprobe.d/sctp.conf
|
437
|
437
|
}
|
438
|
438
|
|
|
439
|
+function disable_rds {
|
|
440
|
+ echo "install rds /bin/true" > /etc/modprobe.d/rds.conf
|
|
441
|
+}
|
|
442
|
+
|
439
|
443
|
function lockdown_permissions {
|
440
|
444
|
# All commands owned by root
|
441
|
445
|
if [ -d /bin ]; then
|
|
@@ -553,6 +557,9 @@ function setup_utils {
|
553
|
557
|
read_config_param "PROJECT_REPO"
|
554
|
558
|
write_config_param "PROJECT_REPO" "$PROJECT_REPO"
|
555
|
559
|
|
|
560
|
+ function_check disable_rds
|
|
561
|
+ disable_rds
|
|
562
|
+
|
556
|
563
|
function_check disable_dccp
|
557
|
564
|
disable_dccp
|
558
|
565
|
|