forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filebeat-bin-1.1.1.ebuild
49 lines (37 loc) · 1.07 KB
/
filebeat-bin-1.1.1.ebuild
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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
MY_PN=${PN/-bin/}
MY_P=${MY_PN}-${PV}
DESCRIPTION="Lightweight log shipper for Logstash and Elasticsearch"
HOMEPAGE="https://www.elastic.co/products/beats"
SRC_URI="amd64? ( https://download.elastic.co/beats/${MY_PN}/${MY_P}-x86_64.tar.gz )
x86? ( https://download.elastic.co/beats/${MY_PN}/${MY_P}-i686.tar.gz )"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
src_unpack() {
if use amd64; then
S="${WORKDIR}/${MY_P}-x86_64"
elif use x86; then
S="${WORKDIR}/${MY_P}-i686"
fi
default
}
src_install() {
keepdir /etc/${MY_PN}
keepdir /var/lib/${MY_PN}
fperms 0750 /var/lib/${MY_PN}
newconfd "${FILESDIR}/${MY_PN}.confd" ${MY_PN}
newinitd "${FILESDIR}/${MY_PN}.initd" ${MY_PN}
insinto /etc/${MY_PN}
newins ${MY_PN}.yml ${MY_PN}.yml.example
dobin ${MY_PN}
}
pkg_postinst() {
if [[ ! -e /etc/${MY_PN}/${MY_PN}.yml ]]; then
elog "Before starting filebeat, you need to create a configuration file at:"
elog "/etc/${MY_PN}/${MY_PN}.yml"
fi
}