1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-21 20:23:50 +03:00

gp: startup scripts list enclude newline in output

The output for listing startup scripts wasn't
clear because there was no newline between
entries.

Signed-off-by: David Mulder <dmulder@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
David Mulder
2022-11-14 09:35:31 -07:00
committed by Jeremy Allison
parent 3bee89c1cf
commit f04f205d27

View File

@@ -3126,7 +3126,7 @@ samba-tool gpo manage scripts startup list {31B2F340-016D-11D2-945F-00C04FB984F9
run_as = run_as.text
else:
run_as = 'root'
self.outf.write('@reboot %s %s %s' % (run_as, script_path,
self.outf.write('@reboot %s %s %s\n' % (run_as, script_path,
parameters.text))
class cmd_add_startup(Command):