/usr/lib/python2.7/dist-packages/softwareproperties/cloudarchive.py is in python-software-properties 0.92.36.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | # software-properties cloud-archive support
#
# Copyright (c) 2013 Canonical Ltd.
#
# Author: Scott Moser <smoser@ubuntu.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA
from __future__ import print_function
import apt_pkg
import os
import subprocess
from gettext import gettext as _
from softwareproperties.shortcuts import ShortcutException
CODENAME = "precise"
OS_RELEASES = ('folsom', 'grizzly', 'havana', 'icehouse')
MIRROR = "http://ubuntu-cloud.archive.canonical.com/ubuntu"
UCA = "Ubuntu Cloud Archive"
WEB_LINK = 'https://wiki.ubuntu.com/ServerTeam/CloudArchive'
APT_INSTALL_KEY = ['apt-get', '--quiet', '--assume-yes', 'install',
'ubuntu-cloud-keyring']
ALIASES = {'tools-updates': 'tools'}
for _r in OS_RELEASES:
ALIASES["%s-updates" % _r] = _r
MAP = {
'tools': {
'sldfmt': '%(codename)s-updates/cloud-tools',
'description': UCA + " for cloud-tools (JuJu and MAAS)"},
'tools-proposed': {
'sldfmt': '%(codename)s-proposed/cloud-tools',
'description': UCA + " for cloud-tools (JuJu and MAAS) [proposed]"}
}
for _r in OS_RELEASES:
MAP[_r] = {
'sldfmt': '%(codename)s-updates/' + _r,
'description': UCA + ' for ' + 'Openstack ' + _r}
MAP[_r + "-proposed"] = {
'sldfmt': '%(codename)s-proposed/' + _r,
'description': UCA + ' for ' + 'Openstack %s [proposed]' % _r}
class CloudArchiveShortcutHandler(object):
def __init__(self, shortcut):
self.shortcut = shortcut
prefix = "cloud-archive:"
subs = {'shortcut': shortcut, 'prefix': prefix,
'ca_names': sorted(MAP.keys())}
if not shortcut.startswith(prefix):
raise ValueError(
_("shortcut '%(shortcut)s' did not start with '%(prefix)s'")
% subs)
name_in = shortcut[len(prefix):]
caname = ALIASES.get(name_in, name_in)
subs.update({'input_name': name_in})
if caname not in MAP:
raise ShortcutException(
_("'%(input_name)s': not a valid cloud-archive name.\n"
"Must be one of %(ca_names)s") % subs)
self.caname = caname
self._info = MAP[caname].copy()
self._info['web_link' ] = WEB_LINK
def info(self):
return self._info
def expand(self, codename):
if codename not in (CODENAME, os.environ.get("CA_ALLOW_CODENAME")):
raise ShortcutException(
_("cloud-archive only supported on %(codename)s")
% {'codename': CODENAME})
dist = MAP[self.caname]['sldfmt'] % {'codename': codename}
line = ' '.join(('deb', MIRROR, dist, 'main',))
return (line, _fname_for_caname(self.caname))
def should_confirm(self):
return True
def add_key(self, keyserver=None):
env = os.environ.copy()
env['DEBIAN_FRONTEND'] = 'noninteractive'
try:
subprocess.check_call(args=APT_INSTALL_KEY, env=env)
except subprocess.CalledProcessError as e:
return False
return True
def _fname_for_caname(caname):
# caname is an entry in MAP ('tools' or 'tools-proposed')
return os.path.join(
apt_pkg.config.find_dir("Dir::Etc::sourceparts"),
'cloudarchive-%s.list' % caname)
def shortcut_handler(shortcut):
try:
return CloudArchiveShortcutHandler(shortcut)
except ValueError:
return None
|