blob: c34247e3a415f2e3bcdf0e210083baf48e7dd60e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/sh
LIBDIR=/home/tridge/samba/cvs/source/smbwrapper
# a simple launcher for the smbwrapper.so preloadde library
if [ x$SMBW_USER = x ]; then
echo username?
read user
SMBW_USER=$user
export SMBW_USER
fi
# this doesn't hide the password - we need a proper launch app for that
if [ x$SMBW_PASSWORD = x ]; then
echo password?
read pass
SMBW_PASSWORD=$pass
export SMBW_PASSWORD
fi
LD_PRELOAD=$LIBDIR/smbwrapper.so
export LD_PRELOAD
export PWD
PS1='smbsh$ '
export PS1
bash
echo done
|