Merge "Make Sample VNF hugepages size configurable"
[yardstick.git] / yardstick / benchmark / scenarios / networking / netperf_remove.bash
1 #!/bin/bash
2
3 ##############################################################################
4 # Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Apache License, Version 2.0
8 # which accompanies this distribution, and is available at
9 # http://www.apache.org/licenses/LICENSE-2.0
10 ##############################################################################
11
12 set -e
13 echo "===Remove netperf after install begin!==="
14 cp /etc/apt/sources.list_bkp /etc/apt/sources.list
15 cp /etc/resolv.conf_bkp /etc/resolv.conf
16
17 service netperf stop
18
19 sudo apt-get purge -y netperf
20
21 echo "===Remove netperf after install end!!!==="