summaryrefslogtreecommitdiff
path: root/WHATSNEW.txt
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2009-05-26 09:29:35 +0200
committerKarolin Seeger <kseeger@samba.org>2009-05-26 09:46:23 +0200
commite1ab08929f7498b2dcb5f49976fc25de1a6038f7 (patch)
treee591977491b276acbac9c0d3ac6a09cb90d5ad40 /WHATSNEW.txt
parent8cfd3e53820c28b0258a12caca1055c51345d4e3 (diff)
downloadsamba-e1ab08929f7498b2dcb5f49976fc25de1a6038f7.tar.gz
WHATSNEW: Add net command changes
(cherry picked from commit ce18ba7e24b5578672d2f2ffaab97ef708421067)
Diffstat (limited to 'WHATSNEW.txt')
-rw-r--r--WHATSNEW.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index 64ffe3ff647..6a779670abd 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -32,6 +32,8 @@ o The code has been cleaned up and the major basic interfaces are shared with
Samba4 now.
o An asynchronous API has been added.
+net Command Changes:
+o parameter syntax made more consistent
General Changes
===============
@@ -99,6 +101,38 @@ these two versions.
An asynchronous API has been added.
+net Command Changes
+===================
+
+The net command now accepts the common command line parameters most other Samba
+command line utilities use, with a couple of remaining differences:
+
+-l still gives long output for net commands supporting the --long flag. This was
+more useful than the common --log-base parameter.
+
+-i still tells net to read data from stdin (like --stdin) instead of toggling
+the common --scope flag.
+
+-S still tells net the server to connect to (like --server) instead of
+negotiating the common --signing flag. As -S is probably used by most scripts
+doing net rpc commands, this would have been a high-impact change for little
+gain.
+
+This change was mainly done to unify the authentification options. Here, one
+flag changed it's meaning and one useful flag was added.
+
+-N used to be the short version of --ntname. It now matches the Samba default of
+--no-pass. Use this to stop net from prompting for a password if you want
+anonymous authentication.
+
+-A --authentication-file now takes an authentication file with the username and
+password you want net to use, avoiding a password prompt as with plain -U user
+or having to give a password on the command line as in -U user%pass.
+
+Last but not least net now always falls back to your local unix username if no
+-U is specified and a username is needed. net rpc commands will now prompt for a
+password unless one is specified using either -U user%pass or -A auth_file
+
######################################################################
Changes
#######