forked from Mylezeem/puppet-authconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpuppet-authconfig.spec
More file actions
41 lines (31 loc) · 1.12 KB
/
puppet-authconfig.spec
File metadata and controls
41 lines (31 loc) · 1.12 KB
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
Name: puppet-authconfig
Version: 0.2.0
Release: 1%{?dist}
Summary: A puppet module that installs and configure authconfig
Group: System Environment/Libraries
License: Apache v2
URL: http://forge.puppetlabs.com/yguenane/authconfig
Source0: http://forge.puppetlabs.com/yguenane/authconfig/%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: puppet
%description
This Puppet module allows you to configure Network Authentication Access via authconfig
%prep
%setup -n yguenane-authconfig-%{version}
%build
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/etc/puppet/modules/authconfig/
cp -r lib manifests $RPM_BUILD_ROOT/etc/puppet/modules/authconfig/
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{_sysconfdir}/puppet/modules/*
%doc CHANGELOG README LICENSE
%changelog
* Mon May 12 2014 Yanis Guenane <yguenane@gmail.com> 0.2.0
- Support for Kerberos (@radioactiv)
- Run only if change is made (@radioactiv)
* Mon Oct 5 2013 Yanis Guenane <yguenane@gmail.com> 0.1.0
- Initial version