generated from YunoHost/example_ynh
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.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.2~ynh2"
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.4.linux-amd64.tar.gz"
amd64.sha256 = "6924efde5de86fe277676e929dc9917d466efa02fb934197bc2eba35d5680971"
i386.url = "https://go.dev/dl/go1.23.4.linux-386.tar.gz"
i386.sha256 = "4a4a0e7587ef8c8a326439b957027f2791795e2d29d4ae3885b4091a48f843bc"
arm64.url = "https://go.dev/dl/go1.23.4.linux-arm64.tar.gz"
arm64.sha256 = "16e5017863a7f6071363782b1b8042eb12c6ca4f4cd71528b2123f0a1275b13e"
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.2/lxd-6.2.tar.gz"
sha256 = "44f98776b9e9e1d720da89b520d75bf8b7c3467507b2d24ada207a160ec961f3"
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"
]