Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix sinitized bug for Junos #1414

Merged
merged 3 commits into from
Mar 29, 2021

Conversation

minefuto
Copy link
Contributor

get_config(sanitized=True) cannot remove community-name when the following configuration.

snmp {
    community public;
    community secure {
        authorization read-only;
    }
}

result:

snmp {
    community public;
    community <removed> {
        authorization read-only;
    }
}

expected:

snmp {
    community <removed>;
    community <removed> {
        authorization read-only;
    }
}

I fixed this issue.

@mirceaulinic mirceaulinic added this to the 3.3.0 milestone Mar 29, 2021
@mirceaulinic mirceaulinic merged commit 5977b14 into napalm-automation:develop Mar 29, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants