Skip to content

Commit 0411ce6

Browse files
committed
- 0.2c release
1 parent 716c46e commit 0411ce6

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

Dockerfile.release

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
FROM alpine:latest
22
RUN apk update
33
RUN apk --no-cache upgrade
4-
RUN apk --no-cache add unzip ca-certificates openssl
54
WORKDIR /mlxsh
6-
RUN wget https://github.com/ipcjk/mlxsh/releases/download/0.2b/release.tar.gz
5+
RUN wget https://github.com/ipcjk/mlxsh/releases/download/0.2c/release.tar.gz
76
RUN tar xfz release.tar.gz --strip 1
87
RUN rm release.tar.gz
9-
RUN chmod 0755 /mlxsh/mlxsh.mac && chmod 0755 /mlxsh/mlxsh
8+
RUN chmod 0755 /mlxsh/mlxsh
109
RUN chown root:root -R /mlxsh
1110
MAINTAINER Joerg Kost <jk@ip-clear.de>

mlxsh.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func init() {
5959
flag.Parse()
6060

6161
if version {
62-
log.Println("mlxsh 0.2b (C) 2017 by Jörg Kost, jk@ip-clear.de")
62+
log.Println("mlxsh 0.2c (C) 2017 by Jörg Kost, jk@ip-clear.de")
6363
os.Exit(0)
6464
}
6565

netironDevice/netiron.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ func NetironDevice(Config NetironConfig) *netironDevice {
5454
*/
5555
sshClientConfig.HostKeyCallback = ssh.InsecureIgnoreHostKey()
5656

57-
5857
/* Allow authentication with ssh dsa or rsa key */
5958
if Config.KeyFile != "" {
6059
if file, err := os.Open(Config.KeyFile); err != nil {

0 commit comments

Comments
 (0)