Merge pull request #687 from devinsolutions/update-__docker
Update __docker type
This commit is contained in:
commit
cebe5949fc
4 changed files with 54 additions and 55 deletions
26
cdist/conf/explorer/os_release
Normal file
26
cdist/conf/explorer/os_release
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# 2018 Adam Dej (dejko.a at gmail.com)
|
||||||
|
#
|
||||||
|
# This file is part of cdist.
|
||||||
|
#
|
||||||
|
# cdist 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 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# cdist 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 cdist. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
|
||||||
|
# See os-release(5) and http://0pointer.de/blog/projects/os-release
|
||||||
|
|
||||||
|
set +e
|
||||||
|
|
||||||
|
cat /etc/os-release || cat /usr/lib/os-release || true
|
|
@ -3,12 +3,12 @@ cdist-type__docker(7)
|
||||||
|
|
||||||
NAME
|
NAME
|
||||||
----
|
----
|
||||||
cdist-type__docker - install docker-engine
|
cdist-type__docker - install Docker CE
|
||||||
|
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
-----------
|
-----------
|
||||||
Installs latest docker-engine package from dockerproject.org.
|
Installs latest Docker Community Edition package.
|
||||||
|
|
||||||
|
|
||||||
REQUIRED PARAMETERS
|
REQUIRED PARAMETERS
|
||||||
|
@ -18,16 +18,13 @@ None.
|
||||||
|
|
||||||
OPTIONAL PARAMETERS
|
OPTIONAL PARAMETERS
|
||||||
-------------------
|
-------------------
|
||||||
None.
|
state
|
||||||
|
'present' or 'absent', defaults to 'present'
|
||||||
|
|
||||||
|
|
||||||
BOOLEAN PARAMETERS
|
BOOLEAN PARAMETERS
|
||||||
------------------
|
------------------
|
||||||
experimental
|
None.
|
||||||
Install the experimental docker-engine package instead of the latest stable release.
|
|
||||||
|
|
||||||
state
|
|
||||||
'present' or 'absent', defaults to 'present'
|
|
||||||
|
|
||||||
|
|
||||||
EXAMPLES
|
EXAMPLES
|
||||||
|
@ -38,9 +35,6 @@ EXAMPLES
|
||||||
# Install docker
|
# Install docker
|
||||||
__docker
|
__docker
|
||||||
|
|
||||||
# Install experimental
|
|
||||||
__docker --experimental
|
|
||||||
|
|
||||||
# Remove docker
|
# Remove docker
|
||||||
__docker --state absent
|
__docker --state absent
|
||||||
|
|
||||||
|
|
|
@ -24,57 +24,37 @@ state=$(cat "$__object/parameter/state")
|
||||||
|
|
||||||
case "$os" in
|
case "$os" in
|
||||||
centos)
|
centos)
|
||||||
component="main"
|
if (source "$__global/explorer/os_release" && [ "${VERSION_ID}" = "7" ]); then
|
||||||
if [ -f "$__object/parameter/experimental" ]; then
|
__yum_repo docker-ce-stable \
|
||||||
component="experimental"
|
--name 'Docker CE Stable' \
|
||||||
fi
|
--baseurl "https://download.docker.com/linux/centos/7/\$basearch/stable" \
|
||||||
__yum_repo docker \
|
|
||||||
--name 'Docker Repository' \
|
|
||||||
--baseurl "https://yum.dockerproject.org/repo/$component/centos/\$releasever/" \
|
|
||||||
--enabled \
|
--enabled \
|
||||||
--gpgcheck 1 \
|
--gpgcheck 1 \
|
||||||
--gpgkey 'https://yum.dockerproject.org/gpg' \
|
--gpgkey 'https://download.docker.com/linux/centos/gpg' \
|
||||||
--state ${state}
|
--state ${state}
|
||||||
require="__yum_repo/docker" __package docker-engine --state ${state}
|
require="__yum_repo/docker-ce-stable" __package docker-ce --state ${state}
|
||||||
;;
|
else
|
||||||
ubuntu)
|
echo "CentOS version 7 is required!" >&2
|
||||||
component="main"
|
exit 1
|
||||||
if [ -f "$__object/parameter/experimental" ]; then
|
|
||||||
component="experimental"
|
|
||||||
fi
|
fi
|
||||||
__package apparmor --state ${state}
|
;;
|
||||||
__package ca-certificates --state ${state}
|
ubuntu|debian)
|
||||||
__package apt-transport-https --state ${state}
|
if [ "${state}" = "present" ]; then
|
||||||
__apt_key docker --keyid 58118E89F3A912897C070ADBF76221572C52609D --state ${state}
|
__package apt-transport-https
|
||||||
|
__package ca-certificates
|
||||||
|
__package gnupg2
|
||||||
|
fi
|
||||||
|
__apt_key_uri docker --name "Docker Release (CE deb) <docker@docker.com>" \
|
||||||
|
--uri "https://download.docker.com/linux/${os}/gpg" --state ${state}
|
||||||
export CDIST_ORDER_DEPENDENCY=on
|
export CDIST_ORDER_DEPENDENCY=on
|
||||||
__apt_source docker \
|
__apt_source docker \
|
||||||
--uri https://apt.dockerproject.org/repo \
|
--uri "https://download.docker.com/linux/${os}" \
|
||||||
--distribution "ubuntu-$(cat "$__global/explorer/lsb_codename")" \
|
--distribution "$(cat "$__global/explorer/lsb_codename")" \
|
||||||
--state ${state} \
|
--state ${state} \
|
||||||
--component "$component"
|
--component "stable"
|
||||||
__package docker-engine --state ${state}
|
__package docker-ce --state ${state}
|
||||||
unset CDIST_ORDER_DEPENDENCY
|
unset CDIST_ORDER_DEPENDENCY
|
||||||
;;
|
;;
|
||||||
debian)
|
|
||||||
component="main"
|
|
||||||
if [ -f "$__object/parameter/experimental" ]; then
|
|
||||||
component="experimental"
|
|
||||||
fi
|
|
||||||
|
|
||||||
__package apt-transport-https --state ${state}
|
|
||||||
__package ca-certificates --state ${state}
|
|
||||||
__package gnupg2 --state ${state}
|
|
||||||
__apt_key docker --keyid 58118E89F3A912897C070ADBF76221572C52609D --state ${state}
|
|
||||||
export CDIST_ORDER_DEPENDENCY=on
|
|
||||||
__apt_source docker \
|
|
||||||
--uri https://apt.dockerproject.org/repo \
|
|
||||||
--distribution "debian-$(cat "$__global/explorer/lsb_codename")" \
|
|
||||||
--state ${state} \
|
|
||||||
--component "$component"
|
|
||||||
__package docker-engine --state ${state}
|
|
||||||
unset CDIST_ORDER_DEPENDENCY
|
|
||||||
|
|
||||||
;;
|
|
||||||
*)
|
*)
|
||||||
echo "Your operating system ($os) is currently not supported by this type (${__type##*/})." >&2
|
echo "Your operating system ($os) is currently not supported by this type (${__type##*/})." >&2
|
||||||
echo "Please contribute an implementation for it if you can." >&2
|
echo "Please contribute an implementation for it if you can." >&2
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
experimental
|
|
Loading…
Reference in a new issue