Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copy files from repo instead of moving them #34

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions libvirt_configuration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ gpasswd -M $USERNAME kvm
gpasswd -M $USERNAME libvirt
sleep 2s
clear
mv libvirtd.conf /etc/libvirt
echo "mv libvirtd.conf /etc/libvirt"
echo "cp libvirtd.conf /etc/libvirt"
cp libvirtd.conf /etc/libvirt
sleep 1s
clear
echo "libvirt has been successfully configured!"
Expand All @@ -42,8 +42,8 @@ clear
echo "mv /etc/libvirt/qemu.conf /etc/libvirt/qemu.conf.old"
mv /etc/libvirt/qemu.conf /etc/libvirt/qemu.conf.old
sleep 1s
echo "mv qemu.conf /etc/libvirt"
mv qemu.conf /etc/libvirt
echo "cp qemu.conf /etc/libvirt"
cp qemu.conf /etc/libvirt
sleep 1s
clear
systemctl restart libvirtd
Expand Down