~ubuntu-branches/ubuntu/utopic/maas/utopic-security

« back to all changes in this revision

Viewing changes to etc/maas/bootresources.yaml

  • Committer: Package Import Robot
  • Author(s): Julian Edwards, Julian Edwards, Andres Rodriguez
  • Date: 2014-08-21 18:38:27 UTC
  • mfrom: (1.2.34)
  • Revision ID: package-import@ubuntu.com-20140821183827-9xyb5u2o4l8g3zxj
Tags: 1.6.1+bzr2550-0ubuntu1
* New upstream bugfix release:
  - Auto-link node MACs to Networks (LP: #1341619)

[ Julian Edwards ]
* debian/maas-region-controller.postinst: Don't restart RabbitMQ on
  upgrades, just ensure it's running.  Should prevent a race with the
  cluster celery restarting.
* debian/rules: Pull upstream branch from the right place.

[ Andres Rodriguez ]
* debian/maas-region-controller.postinst: Ensure cluster celery is
  started if it also runs on the region.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
##
2
 
## Boot image download configuration.
3
 
##
4
 
#
5
 
# Items in this configuration:
6
 
#
7
 
# boot - the root for these settings.
8
 
#
9
 
#   storage - location on the filesystem where boot images are stored.
10
 
#
11
 
# These images can get quite large: some files are hundreds of megabytes,
12
 
# and you may need multiple copies for different architectures, OS releases,
13
 
# etc.
14
 
#
15
 
#   sources - one or more sources of downloadable boot images.
16
 
#
17
 
# Each source downloads from one simplestreams URL, though it is possible to
18
 
# have multiple sources using the same URL.
19
 
#
20
 
#     path - for each source, the path to its (online) Simplestreams data.
21
 
#
22
 
#     keyring - for each source, a GPG keyring to verify images' signatures.
23
 
#
24
 
#     selections - for each source, one or more sets of constraints for images.
25
 
#
26
 
# From each source, only those images are imported which match at least one of
27
 
# the source's selections.  A selection can specify an OS release, a CPU
28
 
# architecture, and so on.
29
 
#
30
 
# Be careful: the items in a selection will multiply.  For example if you
31
 
# specify architectures "i386" and "amd64", and subarchitectures "generic",
32
 
# "hwe-s", and "hwe-t", the import script will need to import 6 images, for
33
 
# each possible combination.  If you only want some of those combinations,
34
 
# keep them as separate sources and/or selections.
35
 
 
36
 
boot:
37
 
  ## Marker: this configuration has not been initialised yet.
38
 
  #
39
 
  # If this is set to True during installation or a later upgrade, it means
40
 
  # that this configuration file has not been edited by a human or by MAAS
41
 
  # itself.  When you edit this configuration to suit your needs, be sure to
42
 
  # remove this setting, or change it to False, so that a future upgrade will
43
 
  # know not to overwrite the configuration file.
44
 
  #
45
 
  # If the setting is True, the upgrade procedure will look for downloaded
46
 
  # boot images that predate the current, Simplestreams-based import
47
 
  # mechanism, and rewrite the configuration based on what it finds.  The new
48
 
  # configuration will import the new-style equivalents of the images that
49
 
  # were imported in the old setup.
50
 
  configure_me: True
51
 
 
52
 
  storage: "/var/lib/maas/boot-resources/"
53
 
 
54
 
  sources:
55
 
    - path: "http://maas.ubuntu.com/images/ephemeral-v2/releases/"
56
 
      keyring: "/usr/share/keyrings/ubuntu-cloudimage-keyring.gpg"
57
 
      selections:
58
 
        - release: "trusty"
59
 
          arches: ["i386", "amd64"]
60
 
          subarches: ["generic"]
61
 
          labels: ["release"]
62
 
        - release: "precise"
63
 
          arches: ["i386", "amd64"]
64
 
          subarches: ["generic"]
65
 
          labels: ["release"]
66