set_vendor.py 文件源码

python
阅读 20 收藏 0 点赞 0 评论 0

项目:Network-Automation-with-Python-and-Ansible-class 作者: pmusolino-rms 项目源码 文件源码
def main():
    """
    Main function doing all the heavy lifting
    """

    django.setup()

    devices = NetworkDevice.objects.all()

    for dev in devices:
        if 'cisco' in dev.device_type:
            dev.vendor = "Cisco"
        elif 'juniper' in dev.device_type:
            dev.vendor = "Juniper"
        elif 'arista' in dev.device_type:
            dev.vendor = "Arista"
        dev.save()

    for dev in devices:
        print dev.device_name, dev.vendor
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号