Ubuntu Pastebin

Paste from adam at Wed, 11 Jan 2017 16:54:03 +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
62
63
64
65
66
67
68
69
name: conjure-up
version: 2.1.0
summary: Package runtime for conjure-up spells
description: >
   This package provides conjure-up, an interface to installing spells that
   provide the user with an end to end walkthrough experience for installing and
   using big software.
confinement: classic
grade: stable

apps:
  conjure-up:
    command: bin/conjure-up-wrapper
    plugs: [home, network, network-control, network-bind]
  bridge:
    command: bridge.start
    stop-command: bridge.stop
    restart-condition: never
    daemon: oneshot
    plugs: [network, network-bind, network-control, firewall-control]
  python3:
    command: python3
  shell:
    command: bash

parts:
  conjure:
    plugin: python3
    source: https://github.com/conjure-up/conjure-up.git
    source-type: git
    requirements: requirements.txt
    stage-packages:
      - bsdtar
      - coreutils
      - lxd-client
      - jq
      - juju
      - iproute2
      - iptables
    snap:
      - sbin/ip
      - sbin/iptables
      - usr/bin/bsdtar
      - usr/bin/tail
      - usr/bin/env
      - usr/bin/pip*
      - usr/bin/easy_install*
      - usr/bin/lxc
      - usr/bin/jq
      - usr/bin/juju*
      - usr/bin/py*
      - bin/conjure-up
      - usr/lib/juju-2.0/bin/juju*
      - usr/lib/python3
      - usr/lib/python3.5/lib-dynload
      - etc/python*
      - -usr/share
      - -usr/include
      - -home
  conjure-configs:
    plugin: dump
    source: https://github.com/conjure-up/conjure-up.git
    filesets:
      etc/conjure-up.conf: etc/conjure-up.conf
  wrapper:
    plugin: dump
    source: .
    organize:
      conjure-up-wrapper: bin/conjure-up-wrapper
Download as text