Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
0d45e40a
Commit
0d45e40a
authored
Apr 19, 2020
by
Joseph Noir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove SSH related setup
parent
e3de3102
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
0 additions
and
90 deletions
+0
-90
dockerfiles/caf-jenkins-centos-6
dockerfiles/caf-jenkins-centos-6
+0
-10
dockerfiles/caf-jenkins-centos-7
dockerfiles/caf-jenkins-centos-7
+0
-8
dockerfiles/caf-jenkins-debian-buster
dockerfiles/caf-jenkins-debian-buster
+0
-8
dockerfiles/caf-jenkins-debian-jessie
dockerfiles/caf-jenkins-debian-jessie
+0
-8
dockerfiles/caf-jenkins-debian-stretch
dockerfiles/caf-jenkins-debian-stretch
+0
-8
dockerfiles/caf-jenkins-fedora-27
dockerfiles/caf-jenkins-fedora-27
+0
-8
dockerfiles/caf-jenkins-fedora-28
dockerfiles/caf-jenkins-fedora-28
+0
-8
dockerfiles/caf-jenkins-fedora-30
dockerfiles/caf-jenkins-fedora-30
+0
-8
dockerfiles/caf-jenkins-fedora-31
dockerfiles/caf-jenkins-fedora-31
+0
-8
dockerfiles/caf-jenkins-ubuntu-16-04
dockerfiles/caf-jenkins-ubuntu-16-04
+0
-8
dockerfiles/caf-jenkins-ubuntu-18-04
dockerfiles/caf-jenkins-ubuntu-18-04
+0
-8
No files found.
dockerfiles/caf-jenkins-centos-6
View file @
0d45e40a
...
...
@@ -19,7 +19,6 @@ RUN yum update -y \
RUN yum install -y git \
wget \
make \
openssh-server \
sudo \
java-1.8.0-openjdk \
cmake3 \
...
...
@@ -32,15 +31,6 @@ RUN yum install -y git \
####################### SETUP SSH #########################
# gen dummy keys, centos doesn't autogen them like ubuntu does
RUN ssh-keygen -q -N "" -t dsa -f /etc/ssh/ssh_host_dsa_key
RUN ssh-keygen -q -N "" -t rsa -b 4096 -f /etc/ssh/ssh_host_rsa_key
RUN ssh-keygen -q -N "" -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key
# Set SSH Configuration to allow remote logins without /proc write access
RUN sed -ri 's/^session\s+required\s+pam_loginuid.so$/session optional pam_loginuid.so/' \
/etc/pam.d/sshd
# Create Jenkins User
RUN useradd jenkins -m -s /bin/bash
...
...
dockerfiles/caf-jenkins-centos-7
View file @
0d45e40a
...
...
@@ -19,7 +19,6 @@ RUN yum update -y \
RUN yum install -y git \
wget \
make \
openssh-server \
sudo \
java-1.8.0-openjdk \
cmake3 \
...
...
@@ -32,13 +31,6 @@ RUN yum install -y git \
####################### SETUP SSH #########################
# gen dummy keys, centos doesn't autogen them like ubuntu does
RUN /usr/bin/ssh-keygen -A
# Set SSH Configuration to allow remote logins without /proc write access
RUN sed -ri 's/^session\s+required\s+pam_loginuid.so$/session optional pam_loginuid.so/' \
/etc/pam.d/sshd
# Create Jenkins User
RUN useradd jenkins -m -s /bin/bash
...
...
dockerfiles/caf-jenkins-debian-buster
View file @
0d45e40a
...
...
@@ -17,7 +17,6 @@ RUN apt-get update -y && \
# Install Packages
RUN apt-get install -y git \
wget \
openssh-server \
openjdk-11-jdk \
cmake \
gcc g++ \
...
...
@@ -28,13 +27,6 @@ RUN apt-get install -y git \
####################### SETUP SSH #########################
# gen dummy keys, centos doesn't autogen them like ubuntu does
RUN /usr/bin/ssh-keygen -A
# Set SSH Configuration to allow remote logins without /proc write access
RUN sed -ri 's/^session\s+required\s+pam_loginuid.so$/session optional pam_loginuid.so/' \
/etc/pam.d/sshd
# Create Jenkins User
RUN useradd jenkins -m -s /bin/bash
...
...
dockerfiles/caf-jenkins-debian-jessie
View file @
0d45e40a
...
...
@@ -25,7 +25,6 @@ RUN apt-get update && \
# Install Packages
RUN apt-get install -y git \
wget \
openssh-server \
cmake \
gcc g++ \
clang-4.0 \
...
...
@@ -41,13 +40,6 @@ RUN apt-get install -y -t jessie-backports openjdk-8-jdk
####################### SETUP SSH #########################
# gen dummy keys, centos doesn't autogen them like ubuntu does
RUN /usr/bin/ssh-keygen -A
# Set SSH Configuration to allow remote logins without /proc write access
RUN sed -ri 's/^session\s+required\s+pam_loginuid.so$/session optional pam_loginuid.so/' \
/etc/pam.d/sshd
# Create Jenkins User
RUN useradd jenkins -m -s /bin/bash
...
...
dockerfiles/caf-jenkins-debian-stretch
View file @
0d45e40a
...
...
@@ -17,7 +17,6 @@ RUN apt-get update -y && \
# Install Packages
RUN apt-get install -y git \
wget \
openssh-server \
openjdk-8-jdk \
cmake \
gcc g++ \
...
...
@@ -28,13 +27,6 @@ RUN apt-get install -y git \
####################### SETUP SSH #########################
# gen dummy keys, centos doesn't autogen them like ubuntu does
RUN /usr/bin/ssh-keygen -A
# Set SSH Configuration to allow remote logins without /proc write access
RUN sed -ri 's/^session\s+required\s+pam_loginuid.so$/session optional pam_loginuid.so/' \
/etc/pam.d/sshd
# Create Jenkins User
RUN useradd jenkins -m -s /bin/bash
...
...
dockerfiles/caf-jenkins-fedora-27
View file @
0d45e40a
...
...
@@ -15,7 +15,6 @@ RUN dnf update -y && \
# Install Packages
RUN dnf install -y git \
wget \
openssh-server \
sudo \
java-9-openjdk \
cmake \
...
...
@@ -29,13 +28,6 @@ RUN dnf install -y git \
####################### SETUP SSH #########################
# gen dummy keys, centos doesn't autogen them like ubuntu does
RUN /usr/bin/ssh-keygen -A
# Set SSH Configuration to allow remote logins without /proc write access
RUN sed -ri 's/^session\s+required\s+pam_loginuid.so$/session optional pam_loginuid.so/' \
/etc/pam.d/sshd
# Create Jenkins User
RUN useradd jenkins -m -s /bin/bash
...
...
dockerfiles/caf-jenkins-fedora-28
View file @
0d45e40a
...
...
@@ -16,7 +16,6 @@ RUN dnf update -y && \
RUN dnf install -y git \
wget \
make \
openssh-server \
sudo \
java-9-openjdk \
cmake \
...
...
@@ -36,13 +35,6 @@ RUN pip install --upgrade gcovr
####################### SETUP SSH #########################
# gen dummy keys, centos doesn't autogen them like ubuntu does
RUN /usr/bin/ssh-keygen -A
# Set SSH Configuration to allow remote logins without /proc write access
RUN sed -ri 's/^session\s+required\s+pam_loginuid.so$/session optional pam_loginuid.so/' \
/etc/pam.d/sshd
# Create Jenkins User
RUN useradd jenkins -m -s /bin/bash
...
...
dockerfiles/caf-jenkins-fedora-30
View file @
0d45e40a
...
...
@@ -16,7 +16,6 @@ RUN dnf update -y && \
RUN dnf install -y git \
wget \
make \
openssh-server \
sudo \
java-11-openjdk \
cmake \
...
...
@@ -36,13 +35,6 @@ RUN pip install --upgrade gcovr
####################### SETUP SSH #########################
# gen dummy keys, centos doesn't autogen them like ubuntu does
RUN /usr/bin/ssh-keygen -A
# Set SSH Configuration to allow remote logins without /proc write access
RUN sed -ri 's/^session\s+required\s+pam_loginuid.so$/session optional pam_loginuid.so/' \
/etc/pam.d/sshd
# Create Jenkins User
RUN useradd jenkins -m -s /bin/bash
...
...
dockerfiles/caf-jenkins-fedora-31
View file @
0d45e40a
...
...
@@ -16,7 +16,6 @@ RUN dnf update -y && \
RUN dnf install -y git \
wget \
make \
openssh-server \
sudo \
java-11-openjdk \
cmake \
...
...
@@ -36,13 +35,6 @@ RUN pip install --upgrade gcovr
####################### SETUP SSH #########################
# gen dummy keys, centos doesn't autogen them like ubuntu does
RUN /usr/bin/ssh-keygen -A
# Set SSH Configuration to allow remote logins without /proc write access
RUN sed -ri 's/^session\s+required\s+pam_loginuid.so$/session optional pam_loginuid.so/' \
/etc/pam.d/sshd
# Create Jenkins User
RUN useradd jenkins -m -s /bin/bash
...
...
dockerfiles/caf-jenkins-ubuntu-16-04
View file @
0d45e40a
...
...
@@ -17,7 +17,6 @@ RUN apt-get update -y && \
# Install Packages
RUN apt-get install -y git \
wget \
openssh-server \
openjdk-8-jdk \
cmake \
gcc g++ \
...
...
@@ -28,13 +27,6 @@ RUN apt-get install -y git \
####################### SETUP SSH #########################
# gen dummy keys, centos doesn't autogen them like ubuntu does
RUN /usr/bin/ssh-keygen -A
# Set SSH Configuration to allow remote logins without /proc write access
RUN sed -ri 's/^session\s+required\s+pam_loginuid.so$/session optional pam_loginuid.so/' \
/etc/pam.d/sshd
# Create Jenkins User
RUN useradd jenkins -m -s /bin/bash
...
...
dockerfiles/caf-jenkins-ubuntu-18-04
View file @
0d45e40a
...
...
@@ -17,7 +17,6 @@ RUN apt-get update -y && \
# Install Packages
RUN apt-get install -y git \
wget \
openssh-server \
openjdk-11-jdk \
cmake \
gcc g++ \
...
...
@@ -28,13 +27,6 @@ RUN apt-get install -y git \
####################### SETUP SSH #########################
# gen dummy keys, centos doesn't autogen them like ubuntu does
RUN /usr/bin/ssh-keygen -A
# Set SSH Configuration to allow remote logins without /proc write access
RUN sed -ri 's/^session\s+required\s+pam_loginuid.so$/session optional pam_loginuid.so/' \
/etc/pam.d/sshd
# Create Jenkins User
RUN useradd jenkins -m -s /bin/bash
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment