summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh
diff options
context:
space:
mode:
Diffstat (limited to 'meta-networking/recipes-netkit/netkit-rsh/netkit-rsh')
-rw-r--r--meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/fix-host-variable.patch27
-rw-r--r--meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/netkit-rsh-0.17-rexec-ipv6.patch30
-rw-r--r--meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rexec.pam10
-rw-r--r--meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rexec.xinetd.netkit2
-rw-r--r--meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rlogin.pam12
-rw-r--r--meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rlogin.xinetd.netkit2
-rw-r--r--meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rsh.pam10
-rw-r--r--meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rsh.xinetd.netkit2
8 files changed, 92 insertions, 3 deletions
diff --git a/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/fix-host-variable.patch b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/fix-host-variable.patch
new file mode 100644
index 000000000..1d3631d47
--- /dev/null
+++ b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/fix-host-variable.patch
@@ -0,0 +1,27 @@
1fix host variable when rsh is renamed to other.
2
3Upstream-Status: Pending
4
5If rsh is renamed to other, like rsh.netkit, host variable is assigned to
6rsh.netkit, which is wrong.
7
8Signed-off-by: Roy.Li <rongqing.li@windriver.com>
9---
10 rsh/rsh.c | 1 -
11 1 files changed, 0 insertions(+), 1 deletions(-)
12
13diff --git a/rsh/rsh.c b/rsh/rsh.c
14index ac594f9..11f533e 100644
15--- a/rsh/rsh.c
16+++ b/rsh/rsh.c
17@@ -100,7 +100,6 @@ main(int argc, char *argv[])
18 #else
19 if (!strcmp(p, "rsh")) asrsh = 1;
20 #endif
21- else host = p;
22
23 /* handle "rsh host flags" */
24 if (!host && argc > 2 && argv[1][0] != '-') {
25--
261.7.5.4
27
diff --git a/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/netkit-rsh-0.17-rexec-ipv6.patch b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/netkit-rsh-0.17-rexec-ipv6.patch
new file mode 100644
index 000000000..efd060f36
--- /dev/null
+++ b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/netkit-rsh-0.17-rexec-ipv6.patch
@@ -0,0 +1,30 @@
1make rexec support ipv6
2
3Upstream-status: Pending
4
5rexec equals rexec_af(... ,AF_INET) which only support ipv4,
6use rexec_af(..., AF_UNSPEC) to support both ipv6 and ipv4.
7
8Signed-off-by: Roy.Li <rongqing.li@windriver.com>
9---
10 rexec/rexec.c | 4 ++--
11 1 files changed, 2 insertions(+), 2 deletions(-)
12
13diff --git a/rexec/rexec.c b/rexec/rexec.c
14index 0913c02..9c8f769 100644
15--- a/rexec/rexec.c
16+++ b/rexec/rexec.c
17@@ -214,8 +214,8 @@ int main(int argc, char *argv[])
18 passwd = getpass("Password: ");
19 }
20
21- if ( (sock = rexec(&host, port_exec, user_name, passwd, command,
22- p_to_aux_sock)) < 0 )
23+ if ( (sock = rexec_af(&host, port_exec, user_name, passwd, command,
24+ p_to_aux_sock, AF_UNSPEC)) < 0 )
25 {
26 fprintf(stderr,"%s: Error in rexec system call: ",argv[0]);
27 perror(NULL);
28--
291.7.4.1
30
diff --git a/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rexec.pam b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rexec.pam
new file mode 100644
index 000000000..94e5dda50
--- /dev/null
+++ b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rexec.pam
@@ -0,0 +1,10 @@
1#%PAM-1.0
2# For root login to succeed here with pam_securetty, "rexec" must be
3# listed in /etc/securetty.
4auth required pam_nologin.so
5auth required pam_env.so
6auth include common-auth
7account include common-account
8session optional pam_keyinit.so force revoke
9session include common-session
10session required pam_loginuid.so
diff --git a/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rexec.xinetd.netkit b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rexec.xinetd.netkit
index 80aed36ff..7354360ae 100644
--- a/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rexec.xinetd.netkit
+++ b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rexec.xinetd.netkit
@@ -14,7 +14,7 @@ service exec
14 group = root 14 group = root
15 log_on_success += USERID 15 log_on_success += USERID
16 log_on_failure += USERID 16 log_on_failure += USERID
17 server = /usr/bin/tcpd 17 server = /usr/sbin/tcpd
18 server_args = /usr/sbin/in.rexecd 18 server_args = /usr/sbin/in.rexecd
19 disable = yes 19 disable = yes
20} 20}
diff --git a/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rlogin.pam b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rlogin.pam
new file mode 100644
index 000000000..b30f139cb
--- /dev/null
+++ b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rlogin.pam
@@ -0,0 +1,12 @@
1#%PAM-1.0
2# For root login to succeed here with pam_securetty, "rlogin" must be
3# listed in /etc/securetty.
4auth required pam_nologin.so
5auth required pam_securetty.so
6auth required pam_env.so
7auth include common-auth
8account include common-account
9password include common-password
10session optional pam_keyinit.so force revoke
11session include common-session
12session required pam_loginuid.so
diff --git a/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rlogin.xinetd.netkit b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rlogin.xinetd.netkit
index 00dbf935b..70493e603 100644
--- a/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rlogin.xinetd.netkit
+++ b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rlogin.xinetd.netkit
@@ -14,7 +14,7 @@ service login
14 group = root 14 group = root
15 log_on_success += USERID 15 log_on_success += USERID
16 log_on_failure += USERID 16 log_on_failure += USERID
17 server = /usr/bin/tcpd 17 server = /usr/sbin/tcpd
18 server_args = /usr/sbin/in.rlogind -a 18 server_args = /usr/sbin/in.rlogind -a
19 disable = yes 19 disable = yes
20} 20}
diff --git a/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rsh.pam b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rsh.pam
new file mode 100644
index 000000000..072327a76
--- /dev/null
+++ b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rsh.pam
@@ -0,0 +1,10 @@
1#%PAM-1.0
2# For root login to succeed here with pam_securetty, "rsh" must be
3# listed in /etc/securetty.
4auth required pam_nologin.so
5auth required pam_securetty.so
6auth required pam_env.so
7account include common-account
8session optional pam_keyinit.so force revoke
9session include common-session
10session required pam_loginuid.so
diff --git a/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rsh.xinetd.netkit b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rsh.xinetd.netkit
index ad59b6207..a842eb974 100644
--- a/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rsh.xinetd.netkit
+++ b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh/rsh.xinetd.netkit
@@ -15,7 +15,7 @@ service shell
15 group = root 15 group = root
16 log_on_success += USERID 16 log_on_success += USERID
17 log_on_failure += USERID 17 log_on_failure += USERID
18 server = /usr/bin/tcpd 18 server = /usr/sbin/tcpd
19 server_args = /usr/sbin/in.rshd -aL 19 server_args = /usr/sbin/in.rshd -aL
20 disable = yes 20 disable = yes
21} 21}