mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
c7fa030aec
Signed-off-by: Bjoern Jacke <bjacke@samba.org> Reviewed-by: Matthias Dieter Wallnöfer <mdw@samba.org>
40 lines
1.0 KiB
Python
Executable File
40 lines
1.0 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# this is useful for running samba tools with a different prefix
|
|
|
|
# for example:
|
|
# samba-tool $(scripting/devel/config_base /tmp/testprefix) join .....
|
|
|
|
import sys, os
|
|
|
|
vars = {
|
|
"ncalrpc dir" : "${PREFIX}/var/ncalrpc",
|
|
"private dir" : "${PREFIX}/private",
|
|
"lock dir" : "${PREFIX}/var/locks",
|
|
"pid directory" : "${PREFIX}/var/run",
|
|
"winbindd socket directory" : "${PREFIX}/var/run/winbindd",
|
|
"ntp signd socket directory" : "${PREFIX}/var/run/ntp_signd"
|
|
}
|
|
|
|
if len(sys.argv) != 2:
|
|
print("Usage: config_base BASEDIRECTORY")
|
|
sys.exit(1)
|
|
|
|
prefix = sys.argv[1]
|
|
|
|
config_dir = prefix + "/etc"
|
|
config_file = config_dir + "/smb.conf"
|
|
|
|
if not os.path.isdir(config_dir):
|
|
os.makedirs(config_dir, mode=0o755)
|
|
if not os.path.isfile(config_file):
|
|
open(config_file, mode='w').close()
|
|
|
|
options = (
|
|
" --configfile=${PREFIX}/etc/smb.conf"
|
|
"".join(" --option=%s=%s" % (v.replace(" ",""), vars[v]) for v in vars)
|
|
).replace("${PREFIX}", prefix)
|
|
|
|
|
|
print(options)
|