Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'build/Vagrantfile')
-rw-r--r--build/Vagrantfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/build/Vagrantfile b/build/Vagrantfile
index c924cf9e..3573bbc7 100644
--- a/build/Vagrantfile
+++ b/build/Vagrantfile
@@ -17,6 +17,10 @@ Vagrant.configure("2") do |config|
config.vm.box = "debian/#{release}64"
config.vm.box_check_update = true
config.vm.hostname = "ncp-vm"
+ config.vm.define "ncp-vm"
+ config.vm.provider :libvirt do |libvirt|
+ libvirt.default_prefix = ""
+ end
config.vm.synced_folder '.', '/vagrant', disabled: true
@@ -39,6 +43,7 @@ Vagrant.configure("2") do |config|
run_app_unsafe post-inst.sh
cd /
rm -r /tmp/nextcloudpi
+ echo "root:ownyourbits" | chpasswd
systemctl disable sshd
poweroff
SHELL