!2 [sync] PR-1: Package init

From: @openeuler-sync-bot 
Reviewed-by: @jxy_git 
Signed-off-by: @jxy_git
This commit is contained in:
openeuler-ci-bot 2023-09-07 07:56:52 +00:00 committed by Gitee
commit d93c258412
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 52 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,52 @@
%define debug_package %{nil}
Name: PilotGo-plugin-grafana
Version: 1.0.1
Release: 1
Summary: PilotGo grafana plugin maintains grafana to provide beautiful visual monitoring interface.
License: MulanPSL-2.0
URL: https://gitee.com/openeuler/PilotGo-plugin-grafana
Source0: https://gitee.com/openeuler/%{name}-%{version}.tar.gz
BuildRequires: systemd
BuildRequires: golang
Provides: pilotgo-plugin-grafana = %{version}-%{release}
%description
PilotGo grafana plugin maintains grafana to provide beautiful visual monitoring interface.
%prep
%autosetup -p1 -n %{name}-%{version}
%build
GO111MODULE=on go build -mod=vendor -o PilotGo-plugin-grafana main.go
%install
mkdir -p %{buildroot}/opt/PilotGo/plugin/grafana/log
install -D -m 0755 PilotGo-plugin-grafana %{buildroot}/opt/PilotGo/plugin/grafana
install -D -m 0644 config.yaml.templete %{buildroot}/opt/PilotGo/plugin/grafana/config.yaml
install -D -m 0644 scripts/PilotGo-plugin-grafana.service %{buildroot}%{_unitdir}/PilotGo-plugin-grafana.service
%post
%systemd_post PilotGo-plugin-grafana.service
%preun
%systemd_preun PilotGo-plugin-grafana.service
%postun
%systemd_postun PilotGo-plugin-grafana.service
%files
%dir /opt/PilotGo
%dir /opt/PilotGo/plugin
%dir /opt/PilotGo/plugin/grafana
%dir /opt/PilotGo/plugin/grafana/log
/opt/PilotGo/plugin/grafana/PilotGo-plugin-grafana
/opt/PilotGo/plugin/grafana/config.yaml
%{_unitdir}/PilotGo-plugin-grafana.service
%changelog
* Fri Sep 01 2023 jianxinyu <jiangxinyu@kylinos.cn> - 1.0.1-1
- Package init