generated from YunoHost/example_ynh
-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.toml
93 lines (77 loc) · 2.63 KB
/
manifest.toml
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
#:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
packaging_format = 2
id = "lxd"
name = "LXD"
description.en = "Offers a user experience similar to virtual machines but using Linux containers instead."
description.fr = "Offre une expérience utilisateur similaire aux machines virtuelles mais en utilisant des conteneurs Linux à la place."
version = "6.1~ynh1"
maintainers = ["kay0u"]
[upstream]
license = "Apache-2.0"
website = "https://linuxcontainers.org/lxd/"
demo = "https://linuxcontainers.org/lxd/try-it/"
admindoc = "https://linuxcontainers.org/lxd/docs/master/index.html"
code = "https://github.com/canonical/lxd"
cpe = "cpe:2.3:a:canonical:lxd"
[integration]
yunohost = ">= 11.2"
architectures = "all"
multi_instance = false
ldap = "not_relevant"
sso = "not_relevant"
disk = "500M"
ram.build = "600M"
ram.runtime = "500M"
[install]
[resources]
[resources.sources]
[resources.sources.go]
amd64.url = "https://go.dev/dl/go1.23.2.linux-amd64.tar.gz"
amd64.sha256 = "542d3c1705f1c6a1c5a80d5dc62e2e45171af291e755d591c5e6531ef63b454e"
i386.url = "https://go.dev/dl/go1.23.2.linux-386.tar.gz"
i386.sha256 = "cb1ed4410f68d8be1156cee0a74fcfbdcd9bca377c83db3a9e1b07eebc6d71ef"
arm64.url = "https://go.dev/dl/go1.23.2.linux-arm64.tar.gz"
arm64.sha256 = "f626cdd92fc21a88b31c1251f419c17782933a42903db87a174ce74eeecc66a9"
armhf.url = "https://go.dev/dl/go1.21.5.linux-armv6l.tar.gz"
armhf.sha256 = "837f4bf4e22fcdf920ffeaa4abf3d02d1314e03725431065f4d44c46a01b42fe"
[resources.sources.main]
url = "https://github.com/canonical/lxd/releases/download/lxd-6.1/lxd-6.1.tar.gz"
sha256 = "ef073f19b5e666f306232d7c086ec1f39bbc14672237f2fd7b65d259caead1b9"
autoupdate.strategy = "latest_github_release"
autoupdate.asset = "^lxd-.*.tar.gz$"
autoupdate.version_regex = "^lxd-(.*)$"
[resources.system_user]
[resources.install_dir]
[resources.permissions]
[resources.apt]
packages = [
# According to https://documentation.ubuntu.com/lxd/en/latest/installing/#install-lxd-from-source
"acl",
"attr",
"autoconf",
"automake",
"dnsmasq-base",
"git",
"libacl1-dev",
"libcap-dev",
"liblxc1",
"lxc-dev",
"libsqlite3-dev",
"libtool",
"libudev-dev",
"liblz4-dev",
"libuv1-dev",
"make",
"pkg-config",
"rsync",
"squashfs-tools",
"tar",
"tcl",
"xz-utils",
"ebtables",
# For lvm2
"lvm2",
"thin-provisioning-tools",
# For btrfs
"btrfs-progs"
]