#!/usr/bin/env python3
# Copyright (c) 2017 Arista Networks, Inc.  All rights reserved.
# Arista Networks, Inc. Confidential and Proprietary.

# This module creates a ribd 'snapshot' core from the Rib agent 
# over stream sockets and is run within the context of a VRF namespace 
# by connecting to the Rib agent in that network namespace over port 9993

from __future__ import absolute_import, division, print_function
from Snapshot import doSnapshot

if __name__ == '__main__':
   doSnapshot( 'ribd' ) 

