mirror of
https://github.com/roles-ansible/ansible_role_i3wm.git
synced 2024-08-16 10:09:53 +02:00
Delete old versions
This commit is contained in:
parent
1914395c46
commit
3a78b24ebc
4 changed files with 0 additions and 54 deletions
|
@ -2,18 +2,12 @@
|
||||||
sudo: required
|
sudo: required
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- distribution: centos
|
|
||||||
version: 7
|
|
||||||
- distribution: fedora
|
- distribution: fedora
|
||||||
version: 29
|
version: 29
|
||||||
- distribution: fedora
|
- distribution: fedora
|
||||||
version: 28
|
version: 28
|
||||||
- distribution: ubuntu
|
- distribution: ubuntu
|
||||||
version: bionic
|
version: bionic
|
||||||
- distribution: ubuntu
|
|
||||||
version: xenial
|
|
||||||
- distribution: ubuntu
|
|
||||||
version: trusty
|
|
||||||
- distribution: debian
|
- distribution: debian
|
||||||
version: stretch
|
version: stretch
|
||||||
- distribution: debian
|
- distribution: debian
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
FROM centos:7
|
|
||||||
|
|
||||||
# Install systemd -- See https://hub.docker.com/_/centos/
|
|
||||||
RUN yum -y swap -- remove fakesystemd -- install systemd systemd-libs
|
|
||||||
RUN yum -y update; \
|
|
||||||
(cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \
|
|
||||||
rm -f /lib/systemd/system/multi-user.target.wants/*; \
|
|
||||||
rm -f /etc/systemd/system/*.wants/*; \
|
|
||||||
rm -f /lib/systemd/system/local-fs.target.wants/*; \
|
|
||||||
rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
|
|
||||||
rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
|
|
||||||
rm -f /lib/systemd/system/basic.target.wants/*; \
|
|
||||||
rm -f /lib/systemd/system/anaconda.target.wants/*;
|
|
||||||
|
|
||||||
RUN yum -y install epel-release
|
|
||||||
RUN yum -y install git ansible sudo
|
|
||||||
|
|
||||||
RUN sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
|
|
||||||
|
|
||||||
RUN echo -e '[local]\nlocalhost ansible_connection=local' > /etc/ansible/hosts
|
|
||||||
|
|
||||||
VOLUME ["/sys/fs/cgroup"]
|
|
||||||
|
|
||||||
CMD ["/usr/sbin/init"]
|
|
|
@ -1,12 +0,0 @@
|
||||||
FROM ubuntu:trusty
|
|
||||||
|
|
||||||
RUN apt-get update && apt-get dist-upgrade -y && apt-get install -y software-properties-common && rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
RUN apt-add-repository -y ppa:ansible/ansible && apt-get update && apt-get install -y \
|
|
||||||
git \
|
|
||||||
ansible \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
RUN echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts
|
|
||||||
|
|
||||||
ENTRYPOINT ["/sbin/init"]
|
|
|
@ -1,12 +0,0 @@
|
||||||
FROM ubuntu:xenial
|
|
||||||
|
|
||||||
RUN apt-get update && apt-get dist-upgrade -y && apt-get install -y software-properties-common && rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
RUN apt-add-repository -y ppa:ansible/ansible && apt-get update && apt-get install -y \
|
|
||||||
git \
|
|
||||||
ansible \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
RUN echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts
|
|
||||||
|
|
||||||
ENTRYPOINT ["/sbin/init"]
|
|
Loading…
Reference in a new issue