summaryrefslogtreecommitdiffstats
path: root/src/kadmin/import/unit-test/config
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1996-09-11 20:38:17 +0000
committerTheodore Tso <tytso@mit.edu>1996-09-11 20:38:17 +0000
commitc345ae24c280496d0cb3acfa96258c7dbfeb25f2 (patch)
tree42f265a0aab4e417d6973e78a860004693260508 /src/kadmin/import/unit-test/config
parent5703cfe7cdaeb9e8d21a8dba5993c96a48037cf6 (diff)
Remove the kadmin/import and kadmin/export directories since the are
subsumed by kdb5_util. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9080 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/kadmin/import/unit-test/config')
-rw-r--r--src/kadmin/import/unit-test/config/unix.exp36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/kadmin/import/unit-test/config/unix.exp b/src/kadmin/import/unit-test/config/unix.exp
deleted file mode 100644
index af4ff443e..000000000
--- a/src/kadmin/import/unit-test/config/unix.exp
+++ /dev/null
@@ -1,36 +0,0 @@
-#
-# import_version -- extract and print the version number of import
-#
-
-proc import_version {} {
- global IMPORT
- set tmp [exec ident $IMPORT]
- if [regexp {Header: .*import.c,v ([0-9]+\.[0-9]+)} $tmp \
- dummy version] then {
- clone_output "$IMPORT version $version\n"
- } else {
- clone_output "$IMPORT version <unknown>\n"
- }
-}
-#
-# import_load -- loads the program
-#
-proc import_load {} {
- #
-}
-
-# import_exit -- clean up and exit
-proc import_exit {} {
- #
-}
-
-#
-# import_start -- start import running
-#
-proc import_start { args } {
- global IMPORT
- global spawn_id
-
- verbose "% $IMPORT $args" 1
- eval spawn $IMPORT $args
-}