Revision e627fe09

b/Makefile.am
282 282
	autotools/build-bash-completion \
283 283
	autotools/check-python-code \
284 284
	autotools/check-man \
285
	autotools/check-tar \
285 286
	autotools/docbook-wrapper \
286 287
	autotools/gen-coverage \
287 288
	autotools/testrunner \
......
669 670
	fi
670 671

  
671 672
# When building a release, stricter checks should be used
672
distcheck-release: export BUILD_RELEASE = 1
673
distcheck-release dist-release: export BUILD_RELEASE = 1
673 674
distcheck-release: distcheck
674 675

  
676
dist-release: dist
677
	set -e; \
678
	for i in $(DIST_ARCHIVES); do \
679
		echo -n "Checking $$i ... "; \
680
		autotools/check-tar < $$i; \
681
		echo OK; \
682
	done
683

  
675 684
install-exec-local:
676 685
	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
677 686
	  "$(DESTDIR)${localstatedir}/log/ganeti" \
b/autotools/check-tar
1
#!/usr/bin/python
2
#
3

  
4
# Copyright (C) 2010 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

  
21

  
22
"""Script to check tarball generated by Automake.
23

  
24
"""
25

  
26
import sys
27
import stat
28
import tarfile
29

  
30

  
31
def ReportError(member, msg):
32
  print >>sys.stderr, "%s: %s" % (member.name, msg)
33

  
34

  
35
def main():
36
  tf = tarfile.open(fileobj=sys.stdin)
37

  
38
  success = True
39

  
40
  for member in tf.getmembers():
41
    if member.uid != 0:
42
      success = False
43
      ReportError(member, "Owned by UID %s, not UID 0" % member.uid)
44

  
45
    if member.gid != 0:
46
      success = False
47
      ReportError(member, "Owned by GID %s, not GID 0" % member.gid)
48

  
49
    if member.mode & (stat.S_IWGRP | stat.S_IWOTH):
50
      success = False
51
      ReportError(member, "World or group writeable (mode is %o)" % member.mode)
52

  
53
  if success:
54
    sys.exit(0)
55

  
56
  sys.exit(1)
57

  
58

  
59
if __name__ == "__main__":
60
  main()

Also available in: Unified diff