From 80b754cf6467e391d983cc809831629b92de863c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= Date: Tue, 18 May 2021 16:02:19 +0200 Subject: [PATCH] Fix indentation in setup_usergroups --- .../includes.installer/kali-finish-install | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/kali-config/common/includes.installer/kali-finish-install b/kali-config/common/includes.installer/kali-finish-install index dba61d8..aaacb66 100755 --- a/kali-config/common/includes.installer/kali-finish-install +++ b/kali-config/common/includes.installer/kali-finish-install @@ -53,20 +53,20 @@ configure_zsh() { # This is generically named in case we want to add other groups in the future. configure_usergroups() { - # Create the kaboxer group if needed - addgroup --system kaboxer || true - # Create the wireshark group if needed - addgroup --system wireshark || true + # Create the kaboxer group if needed + addgroup --system kaboxer || true + # Create the wireshark group if needed + addgroup --system wireshark || true - # kaboxer - for kaboxer - # dialout - for serial access - # wireshark - capture sessions in wireshark - kali_groups="kaboxer,dialout,wireshark" + # kaboxer - for kaboxer + # dialout - for serial access + # wireshark - capture sessions in wireshark + kali_groups="kaboxer,dialout,wireshark" - for user in $(get_user_list); do - echo "INFO: adding user '$user' to groups '$kali_groups'" - usermod -a -G "$kali_groups" $user || true - done + for user in $(get_user_list); do + echo "INFO: adding user '$user' to groups '$kali_groups'" + usermod -a -G "$kali_groups" $user || true + done } configure_sources_list