You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
56 lines
1.4 KiB
Name: BackupPC-server-scripts
|
|
Version: 0.1.2
|
|
Release: 1%{?dist}
|
|
Summary: Some scripts for a BackupPC server
|
|
|
|
Group: Applications/System
|
|
License: GNU GPL
|
|
URL: http://gitweb.firewall-services.com/?p=BackupPC-server-scripts;a=summary
|
|
Source0: %{name}-%{version}.tar.gz
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|
BuildArch: noarch
|
|
Requires: BackupPC
|
|
Requires: winexe
|
|
|
|
|
|
%description
|
|
Provides some scripts to run a a BackupPC server.
|
|
Like pre-backup scripts for Windows boxes
|
|
|
|
%changelog
|
|
* Wed Sep 16 2015 Daniel Berteaud <daniel@firewall-services.com> - 0.1.2-1
|
|
- Adapt winexe commandline args so it works with winexe 1.1
|
|
|
|
* Thu Jul 5 2012 Daniel Berteaud <daniel@firewall-services.com> - 0.1.0
|
|
- initial release
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
|
|
%install
|
|
%{__rm} -rf $RPM_BUILD_ROOT
|
|
|
|
# Install backup script
|
|
%{__mkdir_p} $RPM_BUILD_ROOT%{_bindir}/
|
|
%{__install} -m 0755 scripts/win-* $RPM_BUILD_ROOT%{_bindir}/
|
|
|
|
# coreutils doesn't provides a timeout command in EL5
|
|
# So include the bash one
|
|
%if 0%{?rhel} == 5
|
|
%{__install} -m 0755 scripts/timeout $RPM_BUILD_ROOT%{_bindir}/
|
|
%endif
|
|
|
|
# Install conf
|
|
%{__mkdir_p} $RPM_BUILD_ROOT%{_sysconfdir}/BackupPC
|
|
%{__install} -m 0640 conf/* $RPM_BUILD_ROOT%{_sysconfdir}/BackupPC/
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{_bindir}/*
|
|
%config(noreplace) %attr(0640, root, backuppc) %{_sysconfdir}/BackupPC/*
|
|
|
|
|