1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Latest updates from author.

(This used to be commit bdf0d66577)
This commit is contained in:
John Terpstra 2002-11-20 00:30:56 +00:00
parent a32ffdd1ab
commit 69f3c8f304
2 changed files with 44 additions and 47 deletions

View File

@ -1,4 +1,4 @@
ntlogon.py v0.7b Copyright 2000 by Avalon Technology Group, Inc.
ntlogon.py v0.8b Copyright 2002 by Timothy (rhacer) Grant
This programme is released under the terms of the GNU Public License
This programme has NO WARRANTY of any kind, use at your own risk.
@ -42,7 +42,7 @@ I'd really love to know if even one person other than me and the other techs
here at Avalon have found it useful.
Thanks.
rhacer (rhacer@exceptionalminds.com)
rhacer (rhacer@craigelachie.org)
September 27, 2000
Thanks to those that did respond to my plea! I'd still love to hear from
@ -150,11 +150,10 @@ Nick Lopez <kimo_sabe@atdot.org> for the net bios name patch.
===================
CONTACT INFORMATION
===================
Author : Timothy Grant (rhacer)
Company : Avalon Technology Group, Inc.
Author : Timothy (rhacer) Grant
I can be reached at tjg@exceptionalminds.com
ntlogon website www.exceptionalminds.com/rhacer/ntlogon
I can be reached at tjg@craigelachie.org
ntlogon website www.craigelachie.org/rhacer/ntlogon
Please feel free to contact me with any suggestions, improvements, bugs you
might find.

View File

@ -1,13 +1,11 @@
#!/usr/bin/env python
"""
ntlogon.py written by Timothy Grant
ntlogon.py written by Timothy (rhacer) Grant
Copyright 1999 by Avalon Technology Group, Inc.
Copyright 1999 - 2002 by Timothy Grant
This programme is copyright 1999 by Avalon Technology Group, Inc. it
is distributed under the terms of the GNU Public License.
The format for the configuration file is as follows:
While there is some room for confusion, we attempt to process things in
@ -17,7 +15,7 @@ sense.
# Everything in the Global section applies to all users logging on to the
# network
[Global
[Global]
@ECHO "Welcome to our network!!!"
NET TIME \\\\servername /SET /YES
NET USE F: \\\\servername\\globalshare /YES
@ -355,7 +353,7 @@ def run():
for ln in script:
oFile.write(ln + '\r\n')
if pause:
if string.strip(ln) != '': # Because whitespace is
if string.strip(ln) != '': # Because whitespace
oFile.write('pause' + '\r\n') # is a useful tool, we
# don't put pauses after
# an empty line.