diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-10-06 10:24:22 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-10-06 10:24:22 +0000 |
commit | ed75bab8e22c1cbebe0238a689f7994f3817ee8f (patch) | |
tree | 5efa137d65ae8c31dd9482110a0422bc610f98f8 /source3/smbwrapper/README | |
parent | 3d21f0359590050145fd877a7ec3efc56975d3bd (diff) | |
download | samba-ed75bab8e22c1cbebe0238a689f7994f3817ee8f.tar.gz samba-ed75bab8e22c1cbebe0238a689f7994f3817ee8f.tar.bz2 samba-ed75bab8e22c1cbebe0238a689f7994f3817ee8f.zip |
added SMBW_PREFIX environment variable (allowing you to specify root
of smb filesystem)
fixed "cd /smb" bug
updated README with full list of environment variables.
(This used to be commit 71acf338d721b106af8d80e7b3a6f318ab75da8b)
Diffstat (limited to 'source3/smbwrapper/README')
-rw-r--r-- | source3/smbwrapper/README | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/source3/smbwrapper/README b/source3/smbwrapper/README index 7f699dc8be..e9a52fb247 100644 --- a/source3/smbwrapper/README +++ b/source3/smbwrapper/README @@ -2,6 +2,8 @@ This is a prelodable shared library that provides SMB client services for existing executables. Using this you can simulate a smb filesystem. +*** This is code under development. Some things don't work yet *** + Currently this code has only been tested on: - Linux 2.0 with glibc2 (RH5.1) @@ -28,9 +30,33 @@ happens. If you set SMBW_WORKGROUP to your workgroup or have workgroup set in yoru smb.conf then listing /smb/ should list all SMB servers in your workgroup. -For debugging you can set SMBW_DEBUG to an integer debug level. +Environment variables +--------------------- + +SMBW_USER + This is usually set by smbsh but you can set it manually. It + specifies the username you will connect to servers with. + +SMBW_PASSWORD + This is usually set by smbsh but you can set it manually. It + specifies the password used to connect to smb servers. + +SMBW_DEBUG + This is an integer that controls the internal debug level of smbw. It + defaults to 0, which means no debug info. + +SMBW_LOGFILE + The place where smbw debug logs are put. If this is not set then + stderr is used. + +SMBW_PREFIX + The root of the SMB filesystem. This defaults to /smb/ but you can + set it to any name you like. + +SMBW_WORKGROUP + This is the workgroup used for browsing (ie. listing machines in the + /smb/ directory). It defaults to the one set in smb.conf. -This is code under development. Lots of things don't work yet. Things that I have tried and do seem to work include: |