You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ga...@apache.org on 2018/09/20 18:55:58 UTC

[flink] branch release-1.6 updated: [hotfix][tests] Add file sshd-run.

This is an automated email from the ASF dual-hosted git repository.

gary pushed a commit to branch release-1.6
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.6 by this push:
     new 4020519  [hotfix][tests] Add file sshd-run.
4020519 is described below

commit 40205196de0f56ae85d03dcf95e12878f4acd51c
Author: gyao <ga...@data-artisans.com>
AuthorDate: Thu Sep 20 18:01:48 2018 +0200

    [hotfix][tests] Add file sshd-run.
    
    The file that was previously missing is needed to build the docker images used
    for running the Jepsen tests locally.
---
 flink-jepsen/docker/sshd-run | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/flink-jepsen/docker/sshd-run b/flink-jepsen/docker/sshd-run
new file mode 100644
index 0000000..fe7a957
--- /dev/null
+++ b/flink-jepsen/docker/sshd-run
@@ -0,0 +1,20 @@
+#!/bin/bash
+################################################################################
+#  Licensed to the Apache Software Foundation (ASF) under one
+#  or more contributor license agreements.  See the NOTICE file
+#  distributed with this work for additional information
+#  regarding copyright ownership.  The ASF licenses this file
+#  to you 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.
+################################################################################
+
+exec /usr/sbin/sshd -D
\ No newline at end of file