aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2021-03-22 15:20:18 -0400
committerB Stack <bgstack15@gmail.com>2021-03-22 15:20:18 -0400
commit14ecb4ea7513d9fd528c374db176eedd8da72233 (patch)
treeafba91e08e7cb9eca2ed037fc77c9337df298956
parentMerge branch 'cyberboxster-master-patch-30594' into 'master' (diff)
downloadlaps-14ecb4ea7513d9fd528c374db176eedd8da72233.tar.gz
laps-14ecb4ea7513d9fd528c374db176eedd8da72233.tar.bz2
laps-14ecb4ea7513d9fd528c374db176eedd8da72233.zip
version bump and rename .cron file
Fix #10, #11, and #12
-rw-r--r--laps.spec10
-rw-r--r--src/etc/cron.d/70_laps_cron (renamed from src/etc/cron.d/70_laps.cron)0
-rw-r--r--src/usr/share/doc/laps/changes7
3 files changed, 13 insertions, 4 deletions
diff --git a/laps.spec b/laps.spec
index 2b8bf26..a980da9 100644
--- a/laps.spec
+++ b/laps.spec
@@ -11,7 +11,8 @@ Source0: laps-%{version}.tgz
BuildArch: noarch
BuildRequires: coreutils
-Requires: bgscripts-core >= 1.4.4
+# 1.5.3 fixes #10 (bgscripts#41)
+Requires: bgscripts-core >= 1.5.3
Requires: krb5-workstation
Requires: openldap-clients
Requires: passwd
@@ -40,9 +41,12 @@ cp -pr %{name}*/src/* "%{buildroot}"
%files
%doc %{_docdir}/%{name}/*
%config %attr(644, -, -) %{_sysconfdir}/%{name}/*
-%config %attr(600, -, -) %{_sysconfdir}/cron.d/*.cron
+%config %attr(600, -, -) %{_sysconfdir}/cron.d/*
%{_datadir}/%{name}
%changelog
-* Thu Jul 18 2019 B Stack <bgstack15@gmail.com> 0.0.5-1
+* Mon Mar 22 2021 B. Stack <bgstack15@gmail.com> - 0.0.5-1
+- Version bump
+
+* Thu Jul 18 2019 B Stack <bgstack15@gmail.com> 0.0.4-2
- rpm built
diff --git a/src/etc/cron.d/70_laps.cron b/src/etc/cron.d/70_laps_cron
index 6be219b..6be219b 100644
--- a/src/etc/cron.d/70_laps.cron
+++ b/src/etc/cron.d/70_laps_cron
diff --git a/src/usr/share/doc/laps/changes b/src/usr/share/doc/laps/changes
index c7067e3..9c842eb 100644
--- a/src/usr/share/doc/laps/changes
+++ b/src/usr/share/doc/laps/changes
@@ -11,5 +11,10 @@
- fix #6 document the -i interactive flag
- fix #7 add LAPS_KINIT_HOST_SCRIPT_OPTS
-* Thu Jul 18 2019 B Stack <bgstack15@gmail.com> - 0.0.5-1
+* Thu Jul 18 2019 B Stack <bgstack15@gmail.com> - 0.0.4-2
- move library functions out of laps
+
+* Mon Mar 22 2021 B. Stack <bgstack15@gmail.com> - 0.0.5-1
+- Depend on bgscripts lib that provides library fix for shldap (Fix #10)
+- Fix #11 (laps 0.0.5 rpm)
+- Fix #12 70_laps.cron name is invalid on Debian-based distros
bgstack15