a1a316f22e
Both CentOS and SUSE have pathing and services that are assumed to exist from our previous use of the larger LXC images. This change also ensures netbase is installed across our supported distros. * Imports the "rpm-gpg" packages if the directory exists. * unmasks the "sshd" sevice on SUSE if present and masked or disabled. * Adds the (setup|netbase|netcfg) packages to the base image Change-Id: Idc5caf2030c0e50dfeb84e0648bec08d7f50b6b8 Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
56 lines
1.5 KiB
YAML
56 lines
1.5 KiB
YAML
---
|
|
# Copyright 2016, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
_lxc_hosts_container_image_url: "http://cdimage.ubuntu.com/ubuntu-base/releases/16.04/release/ubuntu-base-16.04.4-base-{{ lxc_cache_map.arch }}.tar.gz"
|
|
|
|
_lxc_cache_map:
|
|
distro: ubuntu
|
|
arch: "{{ lxc_architecture_mapping.get( ansible_architecture ) }}"
|
|
release: xenial
|
|
copy_from_host:
|
|
- /etc/apt/sources.list
|
|
- /etc/apt/apt.conf.d/
|
|
- /etc/apt/preferences.d/
|
|
- /etc/environment
|
|
- /etc/localtime
|
|
- /root/repo.keys
|
|
- /etc/protocols
|
|
|
|
_lxc_cache_prep_template: "prep-scripts/ubuntu_16_prep.sh.j2"
|
|
|
|
_lxc_cache_distro_packages:
|
|
- apt-transport-https
|
|
- ca-certificates
|
|
- cron # xenial doesn't have cronie
|
|
- dbus
|
|
- gcc
|
|
- iproute2
|
|
- iputils-ping
|
|
- libffi-dev
|
|
- libssl-dev
|
|
- netbase
|
|
- openssh-server
|
|
- openssl
|
|
- python2.7
|
|
- python-dev
|
|
- python3-dev
|
|
- rsync
|
|
- sudo
|
|
- systemd
|
|
- systemd-sysv
|
|
- tar
|
|
- wget
|
|
- debianutils # for 'which' executable
|