How can I pipe the new password to smbpasswd so I can automate my installation process.
|
|
|
|
|
|
|
Thanks to Mark I found the answer:
BTW: (echo oldpasswd; echo newpasswd) | smbpasswd -s does not work. |
|||
|
|
|
|
Try something like this:
|
||
|
|
|
|
using either pipelines or redirection. |
||
|
|
|
|
@mark I am getting this:
|
||
|
|
|
|
@unk what happens when you run
by itself, and you type in from the keyboard? |
|||
|
|
|
|
I use the following in one of my scripts:
With echo: -e : escape sequences, like \n -n : don't add implicit newline at end With smbpasswd: -a : add new user -s : silent |
||
|
|
|
|
" echo -ne "$PASS\n$PASS\n" | smbpasswd -a -s $LOGIN " Thanks for this suggestion, it's works fine in my script! Jvonne |
||
|
|
