diff options
author | Sachin Bhamare <sbhamare@panasas.com> | 2012-05-01 14:36:51 -0400 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2012-05-01 14:38:29 -0400 |
commit | a38b3e395f1c76ceb316b394a813abd4e885cc67 (patch) | |
tree | 7b8dbe77c20a52e8945521beaad6b23ca888e785 | |
parent | d8c7e5e1d2aedc6cc3255b4e9572a810f9e8e678 (diff) | |
download | nfs-utils-a38b3e395f1c76ceb316b394a813abd4e885cc67.tar.gz nfs-utils-a38b3e395f1c76ceb316b394a813abd4e885cc67.tar.xz nfs-utils-a38b3e395f1c76ceb316b394a813abd4e885cc67.zip |
osd_login: Add autologin script for objlayoutdriver
From: Sachin Bhamare <sbhamare@panasas.com>
This script is part of the autologin feature mandated by the
pnfs-objects standard.
It is called from objlayoutdriver.ko in the kernel.
It invokes iscsiadm program to perform the iscsi login to OSDs.
It also features a watchdog which will make sure that control
returns to kernel after 15s timeout.
Signed-off-by: Sachin Bhamare <sbhamare@panasas.com>
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | utils/Makefile.am | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index b6a1af7..20c452b 100644 --- a/configure.ac +++ b/configure.ac @@ -488,6 +488,7 @@ AC_CONFIG_FILES([ utils/nfsidmap/Makefile utils/showmount/Makefile utils/statd/Makefile + utils/osd_login/Makefile tests/Makefile tests/nsm_client/Makefile]) AC_OUTPUT diff --git a/utils/Makefile.am b/utils/Makefile.am index 5df7ca7..09045dd 100644 --- a/utils/Makefile.am +++ b/utils/Makefile.am @@ -32,6 +32,7 @@ SUBDIRS = \ nfsstat \ showmount \ statd \ + osd_login \ $(OPTDIRS) MAINTAINERCLEANFILES = Makefile.in |