2014-07-01 18:29:08 +02:00
|
|
|
# Vagrant and YunoHost
|
|
|
|
|
|
|
|
*Here is a small memo-documentation page on how to test/develop YunoHost with Vagrant.*
|
|
|
|
|
|
|
|
*Find other ways to install YunoHost **[here](/install)**.*
|
|
|
|
|
|
|
|
<img src="https://yunohost.org/images/vagrant.png" width=250>
|
|
|
|
|
2014-07-02 20:36:03 +02:00
|
|
|
**Prerequisite**: an x86 computer with VirtualBox installed and enough RAM capacity to be able to run a small virtual machine.
|
2014-07-01 18:29:08 +02:00
|
|
|
|
|
|
|
---
|
|
|
|
|
2014-07-02 09:50:41 +02:00
|
|
|
## Initialization
|
2014-07-01 18:29:08 +02:00
|
|
|
|
|
|
|
Create a project folder
|
|
|
|
```bash
|
|
|
|
mkdir YunoHost
|
|
|
|
cd YunoHost
|
|
|
|
```
|
|
|
|
|
|
|
|
The following command will initialize the project with a Debian Wheezy base image
|
|
|
|
```bash
|
2014-12-04 12:40:12 +01:00
|
|
|
vagrant init chef/debian-7.7
|
2014-07-01 18:29:08 +02:00
|
|
|
```
|
2014-12-04 12:40:12 +01:00
|
|
|
<blockquote>
|
|
|
|
<span class="text-warning">/!\</span> You must have a working image call `chef/debian-7.7`. If not, just do
|
|
|
|
`vagrant box add chef/debian-7.7 https://vagrantcloud.com/chef/boxes/debian-7.7/versions/1.0.0/providers/virtualbox.box`
|
|
|
|
</blockquote>
|
2014-07-01 18:29:08 +02:00
|
|
|
|
|
|
|
Uncomment (remove the leading #) the following line in the newly created Vagrantfile to get access from the host system
|
2014-07-02 09:50:41 +02:00
|
|
|
```bash
|
2014-07-02 09:56:04 +02:00
|
|
|
config.vm.network "private_network", ip: "192.168.33.10"
|
2014-07-01 18:29:08 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Clone the Yunohost install script repository
|
|
|
|
```bash
|
|
|
|
git clone https://github.com/YunoHost/install_script
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
Start the virtual machine
|
|
|
|
```bash
|
|
|
|
vagrant up
|
|
|
|
```
|
|
|
|
|
2014-07-02 09:50:41 +02:00
|
|
|
Connect to the started virtual machine
|
2014-07-01 18:29:08 +02:00
|
|
|
```bash
|
|
|
|
vagrant ssh
|
|
|
|
```
|
|
|
|
|
|
|
|
The root user must have a password
|
|
|
|
```bash
|
|
|
|
sudo passwd
|
|
|
|
```
|
|
|
|
|
|
|
|
Upgrade the system
|
|
|
|
```bash
|
|
|
|
sudo apt-get update && sudo apt-get upgrade
|
|
|
|
```
|
|
|
|
|
|
|
|
Execute the installation script
|
|
|
|
```bash
|
|
|
|
cd /vagrant/install_script && sudo ./install_yunohostv2
|
|
|
|
```
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<p class="text-center">
|
|
|
|
<img src="https://yunohost.org/images/install_script.png">
|
|
|
|
</p>
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
*Once the installation is finished, you may want to proceed to post-installation: **[yunohost.org/postinstall](/postinstall)** *
|