1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.docbook.org/xml/4.4/docbookx.dtd">
<!--
#
# This file is part of Freedom Maker.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
-->
<refentry>
<refmeta>
<refentrytitle><application>vagrant-package</application></refentrytitle>
<manvolnum>1</manvolnum>
<refmiscinfo class="manual">FreedomBox Manual</refmiscinfo>
<refmiscinfo class="version">0.8</refmiscinfo>
</refmeta>
<refnamediv>
<refname><application>vagrant-package</application></refname>
<refpurpose>
convert VirtualBox disk image into Vagrant box
</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>vagrant-package</command>
<arg><option>image</option></arg>
<arg><option>--output</option><arg choice="req">OUTPUT</arg></arg>
<arg><option>-h, </option><option>--help</option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>Description</title>
<para>
FreedomBox is a community project to develop, design and promote
personal servers running free software for private, personal
communications. It is a networking appliance designed to allow
interfacing with the rest of the Internet under conditions of
protected privacy and data security. It hosts applications such
as blog, wiki, website, social network, email, web proxy and a
Tor relay on a device that can replace a wireless router so that
data stays with the users.
</para>
<para>
freedom-maker is a tool to build FreedomBox images for various single
board computers, virtual machines and general purpose computers.
</para>
<para>
Vagrant Package script lets you convert a Virtualbox disk image into a
Vagrant box.
</para>
</refsect1>
<refsect1>
<title>Options</title>
<variablelist>
<varlistentry>
<term><option>image</option></term>
<listitem>
<para>
Disk image file (.vdi) to be converted.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--output OUTPUT</option></term>
<listitem>
<para>
Path of the output vagrant box file (default: package.box).
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>Examples</title>
<example>
<title>Convert amd64 VirtualBox disk image into Vagrant box</title>
<synopsis>$ vagrant-package freedom-maker-amd64.vdi --output
freedom-maker-amd64.box</synopsis>
</example>
</refsect1>
<refsect1>
<title>Bugs</title>
<para>
See the <ulink
url="https://github.com/freedombox/freedom-maker/issues">freedom-maker
issue tracker</ulink> for a full list of known issues and TODO items.
</para>
</refsect1>
<refsect1>
<title>Author</title>
<para>
<author>
<firstname>FreedomBox Developers</firstname>
<contrib>Original author</contrib>
</author>
</para>
</refsect1>
</refentry>
|