mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
dcc39ea439
branch.
(This used to be commit acef477383
)
22 lines
316 B
Plaintext
22 lines
316 B
Plaintext
#
|
|
# Load environment variables
|
|
#
|
|
|
|
global tool
|
|
|
|
if { [file exists "deja-$tool.tcl"] } {
|
|
source "deja-$tool.tcl"
|
|
}
|
|
|
|
# Required options
|
|
|
|
if { ![info exists WORKGROUP] } {
|
|
error "\$WORKGROUP not set in config file"
|
|
}
|
|
|
|
if { ![info exists PDC] } {
|
|
error "\$PDC not set in config file"
|
|
}
|
|
|
|
set domain $WORKGROUP
|