forked from pool/haproxy
26c4149063
- Backport patches from upstream: - BUG/MINOR: http: remove stupid HTTP_METH_NONE entry - BUG/MAJOR: http: don't call http_send_name_header() after an error - Add 0014-BUG-MINOR-http-remove-stupid-HTTP_METH_NONE-entry.patch - Add 0015-BUG-MAJOR-http-don-t-call-http_send_name_header-afte.patch - Backport patches from upstream: - BUG/MINOR: log: missing some ARGC_* entries in fmt_directives() - DOC: usesrc root privileges requirements - BUILD: ssl: Allow building against libssl without SSLv3. - DOC/MINOR: fix OpenBSD versions where haproxy works - BUG/MINOR: http/sample: gmtime/localtime can fail - DOC: typo in 'redirect', 302 code meaning - DOC: mention that %ms is left-padded with zeroes. - CLEANUP: .gitignore: ignore more test files - CLEANUP: .gitignore: finally ignore everything but what is known. - MEDIUM: config: emit a warning on a frontend without listener - BUG/MEDIUM: counters: ensure that src_{inc,clr}_gpc0 creates a missing entry - DOC: ssl: missing LF - DOC: fix example of http-request using ssl_fc_session_id - Add 0001-BUG-MINOR-log-missing-some-ARGC_-entries-in-fmt_dire.patch - Add 0002-DOC-usesrc-root-privileges-requirements.patch - Add 0003-BUILD-ssl-Allow-building-against-libssl-without-SSLv.patch - Add 0004-DOC-MINOR-fix-OpenBSD-versions-where-haproxy-works.patch - Add 0005-BUG-MINOR-http-sample-gmtime-localtime-can-fail.patch - Add 0006-DOC-typo-in-redirect-302-code-meaning.patch - Add 0007-DOC-mention-that-ms-is-left-padded-with-zeroes.patch - Add 0008-CLEANUP-.gitignore-ignore-more-test-files.patch - Add 0009-CLEANUP-.gitignore-finally-ignore-everything-but-wha.patch - Add 0010-MEDIUM-config-emit-a-warning-on-a-frontend-without-l.patch (forwarded request 329653 from KGronlund) OBS-URL: https://build.opensuse.org/request/show/329654 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/haproxy?expand=0&rev=32
45 lines
956 B
Diff
45 lines
956 B
Diff
From 5e077624951a65e6aae381c7213fc54984768dd4 Mon Sep 17 00:00:00 2001
|
|
From: Willy Tarreau <w@1wt.eu>
|
|
Date: Tue, 11 Aug 2015 11:21:47 +0200
|
|
Subject: [PATCH 09/11] CLEANUP: .gitignore: finally ignore everything but what
|
|
is known.
|
|
|
|
Still too many files remain, it's easier to block everything but
|
|
what we know.
|
|
(cherry picked from commit d71f1766bdbb041f80394662b0d293f033f93005)
|
|
---
|
|
.gitignore | 20 ++++++++++++++++++++
|
|
1 file changed, 20 insertions(+)
|
|
|
|
diff --git a/.gitignore b/.gitignore
|
|
index f6ccd0e..1953ba3 100644
|
|
--- a/.gitignore
|
|
+++ b/.gitignore
|
|
@@ -45,3 +45,23 @@ tests/test_hashes
|
|
/*.sh
|
|
/bug*
|
|
/TAGS
|
|
+# Below we forbid everything and only allow what we know, that's much easier
|
|
+# than blocking about 500 different test files and bug report outputs.
|
|
+/.*
|
|
+/*
|
|
+!/.gitignore
|
|
+!/CHANGELOG
|
|
+!/LICENSE
|
|
+!/Makefile
|
|
+!/README
|
|
+!/ROADMAP
|
|
+!/SUBVERS
|
|
+!/VERDATE
|
|
+!/VERSION
|
|
+!/contrib
|
|
+!/doc
|
|
+!/ebtree
|
|
+!/examples
|
|
+!/include
|
|
+!/src
|
|
+!/tests
|
|
--
|
|
2.1.4
|
|
|