Ubuntu Pastebin

Paste from root at Mon, 25 Jul 2016 22:00:48 +0000

Download as text
 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
name: lxd
version: 2.0.3-0
summary: LXD - the container lighervisor
description: LXD is a container manager for system containers.
 It offers a REST API to remotely manage containers over the network,
 using an image based workflow and with support for live migration.

confinement: strict

apps:
  lxc:
    command: lxc

parts:
  lxc:
    source: git://github.com/lxc/lxc
    source-tag: lxc-2.0.3
    build-packages:
      - libapparmor-dev
      - libcap-dev
      - libgnutls-dev
      - libseccomp-dev
      - pkg-config
    plugin: autotools
    configflags:
      - --disable-selinux
      - --disable-python
      - --disable-lua
      - --disable-tests
      - --disable-examples
      - --disable-doc
      - --disable-api-docs
      - --disable-bash
      - --disable-cgmanager
      - --enable-apparmor
      - --enable-seccomp
      - --enable-capabilities

  lxcfs:
    source: git://github.com/lxc/lxcfs
    source-tag: lxcfs-2.0.2
    build-packages:
      - libfuse-dev
      - libpam0g-dev
      - pkg-config
    plugin: autotools

  lxd:
    source: git://github.com/lxc/lxd
    source-tag: lxd-2.0.3
    after:
      - lxc
    build-packages:
      - pkg-config
    plugin: go
    go-importpath: github.com/lxc/lxd
    go-packages:
      - github.com/lxc/lxd/lxc
      - github.com/lxc/lxd/lxd
      - github.com/lxc/lxd/lxd-bridge/lxd-bridge-proxy
      - github.com/lxc/lxd/test/lxd-benchmark
Download as text