mirror of
https://github.com/samba-team/samba.git
synced 2025-02-04 17:47:26 +03:00
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
|