azurelinuxagent/ga/firewall_manager.py [152:157]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        for rule, command in self._get_commands(self._get_check_command_option()):
            try:
                shellutil.run_command(command)
                existing_rules.append(rule)
            except CommandError as e:
                if e.returncode == 1:  # rule does not exist
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



azurelinuxagent/ga/firewall_manager.py [191:196]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        for rule, command in self._get_commands(self._get_check_command_option()):
            try:
                shellutil.run_command(command)
                existing_rules.append(rule)
            except CommandError as e:
                if e.returncode == 1:  # rule does not exist
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



