mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-16 17:36:59 +02:00
feat(cloudinit): add cloud init to image
This commit is contained in:
parent
38f066bf0e
commit
03b9f7a3d5
@ -0,0 +1 @@
|
||||
coreos-cloudinit-9999.ebuild
|
@ -0,0 +1,34 @@
|
||||
# Copyright (c) 2014 CoreOS, Inc.. All rights reserved.
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=4
|
||||
CROS_WORKON_PROJECT="coreos/coreos-cloudinit"
|
||||
CROS_WORKON_LOCALNAME="coreos-cloudinit"
|
||||
CROS_WORKON_REPO="git://github.com"
|
||||
|
||||
if [[ "${PV}" == 9999 ]]; then
|
||||
KEYWORDS="~amd64"
|
||||
else
|
||||
CROS_WORKON_COMMIT="85f151011c17ec8f047f08be41594eb697eac73b"
|
||||
KEYWORDS="amd64"
|
||||
fi
|
||||
|
||||
inherit cros-workon systemd
|
||||
|
||||
DESCRIPTION="coreos-cloudinit"
|
||||
HOMEPAGE="https://github.com/coreos/coreos-cloudinit"
|
||||
SRC_URI=""
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=dev-lang/go-1.2"
|
||||
|
||||
src_compile() {
|
||||
./build || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin ${S}/bin/coreos-cloudinit
|
||||
}
|
@ -106,6 +106,7 @@ RDEPEND="${RDEPEND}
|
||||
coreos-base/update_engine
|
||||
coreos-base/coreos-installer
|
||||
coreos-base/coreos-init
|
||||
coreos-base/coreos-cloudinit
|
||||
coreos-base/coretest
|
||||
net-analyzer/nmap
|
||||
net-firewall/iptables
|
||||
|
Loading…
Reference in New Issue
Block a user