~smoser/curtin/trunk.bzr-dead

« back to all changes in this revision

Viewing changes to examples/basic.yaml

  • Committer: Scott Moser
  • Date: 2017-12-20 17:33:03 UTC
  • Revision ID: smoser@ubuntu.com-20171220173303-29gha5qb8wpqrd40
README: Mention move of revision control to git.

curtin development has moved its revision control to git.
It is available at
  https://code.launchpad.net/curtin

Clone with
  git clone https://git.launchpad.net/curtin
or
  git clone git+ssh://git.launchpad.net/curtin

For more information see
  http://curtin.readthedocs.io/en/latest/topics/development.html

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
early_commands:
2
 
 98_update: apt-get update
3
 
 99_upgrade: DEBIAN_FRONTEND=noninteractive apt-get dist-upgrade --assume-yes
4
 
 
5
 
partitioning_commands:
6
 
 10_partition: curtin block-meta --device=/dev/vdc simple
7
 
 
8
 
network_commands:
9
 
 10_network: curtin net-meta --device=eth0 dhcp
10
 
 
11
 
sources:
12
 
 05_primary: 
13
 
  uri: "http://cloud-images.ubuntu.com/releases/precise/release/ubuntu-12.04-server-cloudimg-amd64-root.tar.gz"
14
 
  type: "tgz"
15
 
 
16
 
# vi: ts=4 expandtab syntax=yaml