mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-24 05:35:33 +03:00
make - autocommit
This commit is contained in:
parent
c6b8e88e20
commit
d1fa4da889
@ -4,6 +4,7 @@
|
||||
* added new `jira` releases
|
||||
* added new `bitbucket` releases
|
||||
* added new `confluence` releases
|
||||
* fixed `git` binary sources
|
||||
-------------------------------------------------------------------
|
||||
## 2022
|
||||
* `dec`
|
||||
|
2
Makefile
2
Makefile
@ -242,7 +242,7 @@ ecosystem-debian-images:
|
||||
make ecosystem-debian-stretch-images
|
||||
make ecosystem-debian-buster-images
|
||||
make ecosystem-debian-bullseye-images
|
||||
make ecosystem-debian-bookworm-images
|
||||
# make ecosystem-debian-bookworm-images
|
||||
|
||||
ecosystem-debian-squeeze-images:
|
||||
cd `pwd`/linux/ecosystem/epicmorg/debian/06-squeeze/slim && pwd && make build && make deploy
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM epicmorg/nodejs:node10
|
||||
FROM epicmorg/nodejs:node12
|
||||
|
||||
RUN git clone https://github.com/ArekSredzki/electron-release-server.git /usr/src/electron-release-server && \
|
||||
tree /usr/src/electron-release-server
|
||||
|
@ -5,8 +5,8 @@ ARG DEBIAN_FRONTEND=noninteractive
|
||||
##################################################################
|
||||
# perforce client binary
|
||||
##################################################################
|
||||
ENV P4_VERSION=r22.1
|
||||
ENV P4_DOWNLOAD_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
|
||||
ARG P4_VERSION=r22.1
|
||||
ARG P4_DOWNLOAD_URL=http://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
|
||||
|
||||
##################################################################
|
||||
# update lists
|
||||
|
@ -139,6 +139,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
# xfsprogs \
|
||||
# xfsdump
|
||||
|
||||
##################################################################
|
||||
# git fresh binary
|
||||
##################################################################
|
||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated \
|
||||
git && \
|
||||
git --version
|
||||
|
||||
##################################################################
|
||||
# git-lfs official binary
|
||||
##################################################################
|
||||
|
@ -0,0 +1,3 @@
|
||||
# mainline
|
||||
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
@ -0,0 +1,3 @@
|
||||
# stable
|
||||
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
@ -5,20 +5,20 @@ ARG DEBIAN_FRONTEND=noninteractive
|
||||
##################################################################
|
||||
# perforce client binary
|
||||
##################################################################
|
||||
ENV P4_VERSION=r22.1
|
||||
ENV P4_DOWNLOAD_URL=https://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
|
||||
ARG P4_VERSION=r22.1
|
||||
ARG P4_DOWNLOAD_URL=https://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
|
||||
|
||||
##################################################################
|
||||
# 7z official binary
|
||||
##################################################################
|
||||
ENV SZ_VERSION=7z2200
|
||||
ENV SZ_DOWNLOAD_URL=https://www.7-zip.org/a/${SZ_VERSION}-linux-x64.tar.xz
|
||||
ARG SZ_VERSION=7z2200
|
||||
ARG SZ_DOWNLOAD_URL=https://www.7-zip.org/a/${SZ_VERSION}-linux-x64.tar.xz
|
||||
|
||||
##################################################################
|
||||
# LazyGit official binary
|
||||
##################################################################
|
||||
ENV LZGIT_VERSION=0.34
|
||||
ENV LZGIT_DOWNLOAD_URL=https://github.com/jesseduffield/lazygit/releases/download/v${LZGIT_VERSION}/lazygit_${LZGIT_VERSION}_Linux_x86_64.tar.gz
|
||||
ARG LZGIT_VERSION=0.34
|
||||
ARG LZGIT_DOWNLOAD_URL=https://github.com/jesseduffield/lazygit/releases/download/v${LZGIT_VERSION}/lazygit_${LZGIT_VERSION}_Linux_x86_64.tar.gz
|
||||
|
||||
##################################################################
|
||||
# update lists
|
||||
@ -138,6 +138,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
# xfsprogs \
|
||||
# xfsdump
|
||||
|
||||
##################################################################
|
||||
# git fresh binary
|
||||
##################################################################
|
||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated \
|
||||
git && \
|
||||
git --version
|
||||
|
||||
##################################################################
|
||||
# git-lfs official binary
|
||||
##################################################################
|
||||
@ -195,7 +208,7 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
|
||||
##################################################################
|
||||
# dumb init
|
||||
##################################################################
|
||||
ENV DUMB_INIT_VERSION=1.2.5
|
||||
ARG DUMB_INIT_VERSION=1.2.5
|
||||
RUN wget -q --no-check-certificate -c https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_x86_64 --random-wait -O /usr/bin/dumb-init && \
|
||||
chmod +x /usr/bin/dumb-init && \
|
||||
dumb-init --version
|
||||
@ -203,7 +216,7 @@ RUN wget -q --no-check-certificate -c https://github.com/Yelp/dumb-init/releases
|
||||
##################################################################
|
||||
# grab gosu for easy step-down from root
|
||||
##################################################################
|
||||
ENV GOSU_VER 1.14
|
||||
ARG GOSU_VER 1.14
|
||||
RUN wget -q --no-check-certificate -c https://github.com/tianon/gosu/releases/download/${GOSU_VER}/gosu-amd64 --random-wait -O /usr/local/bin/gosu && \
|
||||
chmod +x /usr/local/bin/gosu && \
|
||||
gosu --version
|
||||
|
@ -0,0 +1,3 @@
|
||||
# mainline
|
||||
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
@ -0,0 +1,3 @@
|
||||
# stable
|
||||
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
@ -138,6 +138,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
# xfsprogs
|
||||
## xfsdump
|
||||
|
||||
##################################################################
|
||||
# git fresh binary
|
||||
##################################################################
|
||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated \
|
||||
git && \
|
||||
git --version
|
||||
|
||||
##################################################################
|
||||
# git-lfs official binary
|
||||
##################################################################
|
||||
|
@ -0,0 +1,3 @@
|
||||
# mainline
|
||||
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu jammy main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu jammy main
|
@ -0,0 +1,3 @@
|
||||
# stable
|
||||
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu jammy main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu jammy main
|
@ -188,6 +188,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
# xfsprogs \
|
||||
# xfsdump
|
||||
|
||||
##################################################################
|
||||
# git fresh binary
|
||||
##################################################################
|
||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated \
|
||||
git && \
|
||||
git --version
|
||||
|
||||
##################################################################
|
||||
# git-lfs official binary
|
||||
##################################################################
|
||||
|
@ -0,0 +1,3 @@
|
||||
# mainline
|
||||
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
@ -0,0 +1,3 @@
|
||||
# stable
|
||||
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
@ -192,6 +192,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
# xfsprogs \
|
||||
# xfsdump
|
||||
|
||||
##################################################################
|
||||
# git fresh binary
|
||||
##################################################################
|
||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated \
|
||||
git && \
|
||||
git --version
|
||||
|
||||
##################################################################
|
||||
# git-lfs official binary
|
||||
##################################################################
|
||||
|
@ -0,0 +1,3 @@
|
||||
# mainline
|
||||
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
@ -0,0 +1,3 @@
|
||||
# stable
|
||||
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
# xfsprogs \
|
||||
# xfsdump
|
||||
|
||||
##################################################################
|
||||
# git fresh binary
|
||||
##################################################################
|
||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated \
|
||||
git && \
|
||||
git --version
|
||||
|
||||
##################################################################
|
||||
# git-lfs official binary
|
||||
##################################################################
|
||||
|
@ -0,0 +1,3 @@
|
||||
# mainline
|
||||
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
@ -0,0 +1,3 @@
|
||||
# stable
|
||||
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
# xfsprogs \
|
||||
# xfsdump
|
||||
|
||||
##################################################################
|
||||
# git fresh binary
|
||||
##################################################################
|
||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated \
|
||||
git && \
|
||||
git --version
|
||||
|
||||
##################################################################
|
||||
# git-lfs official binary
|
||||
##################################################################
|
||||
|
@ -0,0 +1,3 @@
|
||||
# mainline
|
||||
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
@ -0,0 +1,3 @@
|
||||
# stable
|
||||
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
# xfsprogs \
|
||||
# xfsdump
|
||||
|
||||
##################################################################
|
||||
# git fresh binary
|
||||
##################################################################
|
||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated \
|
||||
git && \
|
||||
git --version
|
||||
|
||||
##################################################################
|
||||
# git-lfs official binary
|
||||
##################################################################
|
||||
|
@ -0,0 +1,3 @@
|
||||
# mainline
|
||||
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
@ -0,0 +1,3 @@
|
||||
# stable
|
||||
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
# xfsprogs \
|
||||
# xfsdump
|
||||
|
||||
##################################################################
|
||||
# git fresh binary
|
||||
##################################################################
|
||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated \
|
||||
git && \
|
||||
git --version
|
||||
|
||||
##################################################################
|
||||
# git-lfs official binary
|
||||
##################################################################
|
||||
|
@ -0,0 +1,3 @@
|
||||
# mainline
|
||||
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
@ -0,0 +1,3 @@
|
||||
# stable
|
||||
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
# xfsprogs \
|
||||
# xfsdump
|
||||
|
||||
##################################################################
|
||||
# git fresh binary
|
||||
##################################################################
|
||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated \
|
||||
git && \
|
||||
git --version
|
||||
|
||||
##################################################################
|
||||
# git-lfs official binary
|
||||
##################################################################
|
||||
|
@ -0,0 +1,3 @@
|
||||
# mainline
|
||||
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
@ -0,0 +1,3 @@
|
||||
# stable
|
||||
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
@ -183,6 +183,19 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
# xfsprogs \
|
||||
# xfsdump
|
||||
|
||||
##################################################################
|
||||
# git fresh binary
|
||||
##################################################################
|
||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated \
|
||||
git && \
|
||||
git --version
|
||||
|
||||
##################################################################
|
||||
# git-lfs official binary
|
||||
##################################################################
|
||||
|
@ -0,0 +1,3 @@
|
||||
# mainline
|
||||
deb https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/candidate/ubuntu focal main
|
@ -0,0 +1,3 @@
|
||||
# stable
|
||||
deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
||||
deb-src https://ppa.launchpadcontent.net/git-core/ppa/ubuntu focal main
|
@ -8,7 +8,7 @@ ARG DEBIAN_FRONTEND=noninteractive
|
||||
ENV MONERO_DIR=/monero
|
||||
ENV MONERO_BIN=${MONERO_DIR}/bin
|
||||
ENV MONERO_DATA=${MONERO_DIR}/data
|
||||
ENV MONERO_VERSION=0.18.1.0
|
||||
ENV MONERO_VERSION=0.18.1.2
|
||||
ENV MONERO_DOWNLOAD_URL=https://downloads.getmonero.org/cli/monero-linux-x64-v${MONERO_VERSION}.tar.bz2
|
||||
ENV PATH="${PATH}:${MONERO_BIN}"
|
||||
|
||||
|
@ -7,7 +7,7 @@ ARG DEBIAN_FRONTEND=noninteractive
|
||||
# ARGuments
|
||||
##################################################################
|
||||
ENV P2POOL_DIR=/p2pool
|
||||
ENV P2POOL_VERSION=2.3
|
||||
ENV P2POOL_VERSION=2.7
|
||||
ENV P2POOL_DOWNLOAD_URL=https://github.com/SChernykh/p2pool/releases/download/v${P2POOL_VERSION}/p2pool-v${P2POOL_VERSION}-linux-x64.tar.gz
|
||||
|
||||
##################################################################
|
||||
|
Loading…
Reference in New Issue
Block a user