File: apt-report-mirror-failure

package info (click to toggle)
apt 3.1.13
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 22,764 kB
  • sloc: cpp: 71,085; sh: 31,750; xml: 5,553; perl: 217; python: 197; ansic: 191; makefile: 41
file content (29 lines) | stat: -rwxr-xr-x 650 bytes parent folder | download | duplicates (12)
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
#!/usr/bin/python
#
# This is a stub that is meant to support failure reporting of 
# mirrors to a central database
#
# its currently not used

import sys
import urllib
import apt_pkg

apt_pkg.init()
url = apt_pkg.Config.find("Acquire::Mirror::ReportFailures", "")
                          #"http://people.ubuntu.com:9000/mirror-failure")
                          #"http://localhost:9000/mirror-failure")
if not url:
    sys.exit(0)

print "Reporting mirror failure to '%s'" % url

data = {}
data['mirror'] = sys.argv[1]
data['failurl'] = sys.argv[2]
data['error'] = sys.argv[3]
f = urllib.urlopen(url, urllib.urlencode(data))
f.read()
f.close()