-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added RPM patches submitted by Robert Napier
- Loading branch information
Showing
7 changed files
with
55 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ [email protected] -- dup handler, pgsql handler, vserver support, bug fixes | |
Charles Lepple -- trac handler | ||
Petr Kl�ma <[email protected]> -- autotools, RPM support and sys checks | ||
[email protected] -- rsnap handler | ||
Robert Napier -- improved RPM build | ||
|
||
Patches: | ||
|
||
|
@@ -19,4 +20,3 @@ [email protected] | |
Martin Krafft [email protected] -- admingroup patch | ||
Anarcat | ||
rhatto | ||
Robert Napier -- improved RPM build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
#!/bin/bash | ||
|
||
if [ "x$EDITOR" = "x" ]; | ||
then | ||
EDITOR=vi | ||
fi | ||
|
||
if [ "x$1" = "x-f" ] | ||
then | ||
autoscan | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,22 +38,26 @@ touch "%{buildroot}%{_localstatedir}/log/backupninja.log" | |
#rm -fr %{buildroot} | ||
|
||
%files | ||
%defattr(0750,root,root) | ||
%defattr(-,root,root,-) | ||
%{_sbindir}/* | ||
%{_datadir}/backupninja/* | ||
%{_libdir}/backupninja/* | ||
%{_sysconfdir}/cron.d/backupninja | ||
%{_sysconfdir}/logrotate.d/backupninja | ||
|
||
%defattr(0600,root,root) | ||
%config %{_sysconfdir}/cron.d/backupninja | ||
%config %{_sysconfdir}/logrotate.d/backupninja | ||
|
||
%config(noreplace) %{_sysconfdir}/backupninja.conf | ||
%dir %{_sysconfdir}/backup.d | ||
%dir %{_localstatedir}/backups | ||
|
||
%ghost %{_localstatedir}/log/backupninja.log | ||
|
||
%defattr(0644,root,root) | ||
%doc AUTHORS COPYING ChangeLog INSTALL NEWS README | ||
%{_mandir}/* | ||
%{_mandir}/man1/* | ||
%{_mandir}/man5/* | ||
|
||
%defattr(0640,root,root,0750) | ||
%dir %{_sysconfdir}/backup.d | ||
|
||
|
||
%changelog | ||
* Mon Apr 29 2002 Petr Klima <[email protected]> 0.7.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -276,6 +276,7 @@ fi | |
fi | ||
fi | ||
done | ||
fi | ||
|
||
# clean up tmp config file | ||
if [ "$dbusername" != "" -a "$dbpassword" != "" ] | ||
|