2022-01-21 18:45:44 +01:00
|
|
|
#
|
|
|
|
# spec file for package velociraptor
|
|
|
|
#
|
|
|
|
# Copyright (c) 2021 SUSE LLC
|
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
%define projname velociraptor
|
|
|
|
|
|
|
|
Name: velociraptor
|
2022-02-02 19:59:59 +01:00
|
|
|
Version: 0.6.3~git0.69e0fffa
|
2022-01-21 18:45:44 +01:00
|
|
|
Release: 0
|
|
|
|
Summary: Endpoint visibility and collection tool
|
|
|
|
|
|
|
|
# FIXME: Select a correct license from https://github.com/openSUSE/spec-cleaner#spdx-licenses
|
|
|
|
License: AGPL-3.0-only
|
|
|
|
URL: https://github.com/Velocidex/velociraptor
|
|
|
|
Source: %{projname}-%{version}.tar.xz
|
|
|
|
Source1: vendor-golang-%{version}.tar.xz
|
|
|
|
Source2: vendor-nodejs-%{version}.tar.xz
|
2022-02-02 19:59:59 +01:00
|
|
|
Source3: %{name}.service
|
|
|
|
Source4: %{name}-server.config.placeholder
|
2022-01-21 18:45:44 +01:00
|
|
|
Patch1: velociraptor-golang-mage-vendoring.diff
|
|
|
|
BuildRequires: golang-packaging
|
|
|
|
BuildRequires: systemd-rpm-macros
|
|
|
|
BuildRequires: golang(API) >= 1.14
|
|
|
|
BuildRequires: fileb0x
|
|
|
|
BuildRequires: mage
|
|
|
|
BuildRequires: libtsan0
|
|
|
|
BuildRequires: nodejs16
|
|
|
|
BuildRequires: npm16
|
|
|
|
Conflicts: velociraptor-client
|
|
|
|
|
|
|
|
%description
|
|
|
|
Velociraptor is a tool for collecting host based state information
|
|
|
|
using The Velociraptor Query Language (VQL) queries.
|
|
|
|
|
|
|
|
To learn more about Velociraptor, read the documentation on:
|
|
|
|
|
|
|
|
https://docs.velociraptor.app/
|
|
|
|
|
|
|
|
This package contains the endpoint agent and full console GUI.
|
|
|
|
For just the endpoint agent, please install the 'velociraptor-client' package.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -a 1 -a 2 -n %{projname}-%{version}
|
|
|
|
%autopatch -p1
|
|
|
|
|
|
|
|
# Set the version to something more specific than <next-tag>-dev
|
|
|
|
sed -ie "s/\(VERSION *= \).*/\1 \"%{version}\"/" constants/constants.go
|
|
|
|
|
|
|
|
# These just clutter the GUI and we don't have Windows clients
|
2022-02-07 19:30:48 +01:00
|
|
|
# Note: There are dependencies on these that need to be resolved before
|
|
|
|
# removing them outright.
|
|
|
|
#rm -rf artifacts/definitions/Windows
|
2022-01-21 18:45:44 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
(cd gui/velociraptor ; npm run build)
|
|
|
|
make linux
|
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p %buildroot/%{_bindir}
|
2022-02-02 19:59:59 +01:00
|
|
|
mkdir -p %buildroot/%{_sysconfdir}/velociraptor
|
|
|
|
mkdir -p %buildroot/%{_unitdir}
|
2022-01-21 18:45:44 +01:00
|
|
|
install -m 755 output/velociraptor-v%{version}-linux-* %buildroot/%{_bindir}/velociraptor
|
2022-02-02 19:59:59 +01:00
|
|
|
install -m 0644 %{SOURCE3} %{buildroot}%{_unitdir}/%{name}.service
|
|
|
|
install -m 0600 %{SOURCE4} %{buildroot}%{_sysconfdir}/velociraptor/server.config
|
2022-01-21 18:45:44 +01:00
|
|
|
|
|
|
|
%files
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md
|
2022-02-02 19:59:59 +01:00
|
|
|
%dir %{_sysconfdir}/velociraptor
|
2022-01-21 18:45:44 +01:00
|
|
|
%{_bindir}/velociraptor
|
2022-02-02 19:59:59 +01:00
|
|
|
%config(noreplace) %{_sysconfdir}/velociraptor/server.config
|
|
|
|
%{_unitdir}/%{name}.service
|
|
|
|
|
|
|
|
%pre
|
|
|
|
%service_add_pre %{name}.service
|
|
|
|
|
|
|
|
%post
|
|
|
|
%service_add_post %{name}.service
|
|
|
|
|
|
|
|
%preun
|
|
|
|
%service_del_preun %{name}.service
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%service_del_postun %{name}.service
|
|
|
|
|
2022-01-21 18:45:44 +01:00
|
|
|
|
|
|
|
%changelog
|