mirror of
https://github.com/samba-team/samba.git
synced 2025-01-25 06:04:04 +03:00
dcc39ea439
branch. (This used to be commit acef477383e5739292e764c17cef87822a09f13b)
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
|