K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / lib / python3 / dist-packages / softwareproperties /
server ip : 172.67.156.115

your ip : 172.70.100.152

H O M E


Filename/usr/lib/python3/dist-packages/softwareproperties/cloudarchive.py
Size4.02 kb
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 09:56
Last modified14-Apr-2014 17:33
Last accessed07-Jul-2025 00:10
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
# software-properties cloud-archive support
#
# Copyright (c) 2013 Canonical Ltd.
#
# Author: Scott Moser <[email protected]>
#
# 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