Skip to content
This repository has been archived by the owner on Sep 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #388 from chvalean/upstream
Browse files Browse the repository at this point in the history
Overwrite old dependency files
  • Loading branch information
vyadavmsft authored Jun 28, 2017
2 parents c3402aa + d8a9caa commit e04852c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions hv-rhel6.x/hv/rhel6-hv-driver-install
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ cp -f ./hyperv_pvdrivers.conf /etc/modprobe.d/

echo "Copying scripts for IP injection"

\cp ./tools/hv_get_dns_info.sh /usr/sbin/hv_get_dns_info
\cp -f ./tools/hv_get_dns_info.sh /usr/sbin/hv_get_dns_info
[ $? -eq 0 ] || exit 1

\cp ./tools/hv_get_dhcp_info.sh /usr/sbin/hv_get_dhcp_info
\cp -f ./tools/hv_get_dhcp_info.sh /usr/sbin/hv_get_dhcp_info
[ $? -eq 0 ] || exit 1

\cp ./tools/hv_set_ifconfig.sh /usr/sbin/hv_set_ifconfig
\cp -f ./tools/hv_set_ifconfig.sh /usr/sbin/hv_set_ifconfig
[ $? -eq 0 ] || exit 1

echo "Copying lsvmbus tool"

\cp ./tools/lsvmbus /usr/sbin/
\cp -f ./tools/lsvmbus /usr/sbin/
[ $? -eq 0 ] || exit 1

echo "Generating initramfs"
Expand Down
10 changes: 5 additions & 5 deletions hv-rhel7.x/hv/rhel7-hv-driver-install
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ cp -f ./hyperv_pvdrivers.conf /etc/modprobe.d/
[ $? -eq 0 ] || exit 1

echo "Copying scripts for IP injection"
\cp ./tools/hv_get_dns_info.sh /usr/sbin/hv_get_dns_info
\cp -f ./tools/hv_get_dns_info.sh /usr/sbin/hv_get_dns_info
[ $? -eq 0 ] || exit 1

\cp ./tools/hv_get_dhcp_info.sh /usr/sbin/hv_get_dhcp_info
\cp -f ./tools/hv_get_dhcp_info.sh /usr/sbin/hv_get_dhcp_info
[ $? -eq 0 ] || exit 1

\cp ./tools/hv_set_ifconfig.sh /usr/sbin/hv_set_ifconfig
\cp -f ./tools/hv_set_ifconfig.sh /usr/sbin/hv_set_ifconfig
[ $? -eq 0 ] || exit 1

echo "Copying lsvmbus tool"
\cp ./tools/lsvmbus /usr/sbin/
\cp -f ./tools/lsvmbus /usr/sbin/
[ $? -eq 0 ] || exit 1

echo "Copying bondvf.sh"
\cp ./tools/bondvf.sh /usr/sbin/
\cp -f ./tools/bondvf.sh /usr/sbin/
[ $? -eq 0 ] || exit 1

echo "Generating initramfs"
Expand Down

0 comments on commit e04852c

Please sign in to comment.