-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
90 lines (79 loc) · 2.68 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/bin/bash
echo""
echo "#####################"
echo "# Setting Locals... #"
echo "#####################"
echo "$ LC_ALL=en_US"
echo "$ export LC_ALL"
echo""
LC_ALL=en_US.UTF-8
export LC_ALL
echo""
echo "#########################"
echo "# Cloning repository... #"
echo "#########################"
echo "$ git clone https://github.com/aamargant/net_automation.git"
echo""
git clone https://github.com/aamargant/net_automation.git
echo""
echo "##############################"
echo "# Navigating to directory... #"
echo "##############################"
echo "$ cd net_automation"
echo""
cd net_automation
echo""
echo "#############################################"
echo "# Setting up python virtual envirionment... #"
echo "#############################################"
echo "$ python3.6 -m venv venv"
echo "$ source venv/bin/activate"
echo""
python3.6 -m venv venv
source venv/bin/activate
echo""
echo "##################################"
echo "# Setting up pip requirements... #"
echo "##################################"
echo "$ pip install --upgrade pip"
echo "$ pip install -r requirements.txt"
echo""
pip install --upgrade pip
pip install -r requirements.txt
echo""
echo "######################################"
echo "# Setting up ansible requirements... #"
echo "######################################"
echo "$ ansible-galaxy collection install -r requirements.yml -p ./"
echo""
ansible-galaxy collection install -r requirements.yml -p ./
echo""
echo "#############################################"
echo "# Downloading OpenConfig YANG data model... #"
echo "#############################################"
echo "$ wget https://devhub.cisco.com/artifactory/open-nxos-agents/9.2.3/x86_64/mtx-openconfig-all-1.0.0.0-9.2.3.lib32_n9000.rpm"
echo""
wget https://devhub.cisco.com/artifactory/open-nxos-agents/9.2.3/x86_64/mtx-openconfig-all-1.0.0.0-9.2.3.lib32_n9000.rpm
echo""
echo "####################################################"
echo "# Cloning OpenConfig YANG data model repository... #"
echo "####################################################"
echo "$ git clone https://github.com/openconfig/public.git"
echo""
git clone https://github.com/openconfig/public.git
echo""
echo "####################################################"
echo "# Cloning YangModels YANG data model repository... #"
echo "####################################################"
echo "$ git clone https://github.com/YangModels/yang.git"
echo""
git clone https://github.com/YangModels/yang.git
echo""
echo "########################################"
echo "# Importing topology into cml sandbox... #"
echo "########################################"
echo "$ python topologySetUp.py"
echo""
python topologySetUp.py
echo ""
echo "########## Ready ##########"