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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# $Id$
# Authority: dag
# Upstream: Dag Wieers <dag@wieers.com>
Summary: Create a system's hardware and software configuration snapshot
Name: dconf
Version: 0.5.0
Release: 1
License: GPL
Group: System Environment/Base
URL: http://dag.wieers.com/home-made/dconf/
Source: http://dag.wieers.com/home-made/dconf/dconf-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
BuildArch: noarch
BuildRequires: python
Requires: python
%description
Dconf is a tool to collect a system's hardware and software configuration.
It allows to take your system configuration with you on the road, compare
identical systems (like nodes in a cluster) to troubleshoot HW or SW
problems.
Dconf is also useful in projects where you have to manage changes as a
team. Dconf can send out system changes to a list of email addresses so
that they can be revised and discussed in group.
You can customize your dconf configuration for specific needs, like making
a profile of your laptop's hardware or copy specific software configuration
files to send out or compare with other systems.
%prep
%setup
%build
%install
%{__rm} -rf %{buildroot}
%{__make} install install-redhat DESTDIR="%{buildroot}"
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-, root, root, 0755)
%doc AUTHORS ChangeLog COPYING README THANKS TODO config/ scripts/
%doc %{_mandir}/man1/dconf.1*
%config %{_sysconfdir}/dconf.conf
%config(noreplace) %{_sysconfdir}/dconf-custom.conf
%{_bindir}/dconf
%{_localstatedir}/log/dconf/
%changelog
* Fri Sep 09 2005 Dag Wieers <dag@wieers.com> - 0.5.0-1
- Updated to release 0.5.0.
* Wed Jun 22 2005 Dag Wieers <dag@wieers.com> - 0.4.2-1
- Updated to release 0.4.2.
* Wed Nov 24 2004 Dag Wieers <dag@wieers.com> - 0.4.1-1
- Updated to release 0.4.1.
* Sun Nov 21 2004 Dag Wieers <dag@wieers.com> - 0.4-1
- Updated to release 0.4.
* Sun Oct 24 2004 Dag Wieers <dag@wieers.com> - 0.3-1
- Updated to release 0.3.
|