…
‘DIR_B’ => { ARGCOUNT => ARGCOUNT_ONE, DEFAULT => “/home/” },
‘DIR_C’ => { ARGCOUNT => ARGCOUNT_ONE, DEFAULT => “/home/” },
# additional variables to cope with the Ubuntu (and other distros) forced
# use of sudo; if the USE_SUDO variable is positive then commands that
# require root access will use sudo with the -S switch,
# i.e. echo “root_password” | sudo -S command
# also the username of the account to connect to – instead of root -
# will be used: SUDO_ACCOUNT_NAME_{node}
‘USE_SUDO’ => { ARGCOUNT => ARGCOUNT_ONE, DEFAULT => “0″ },
‘SUDO_ACCOUNT_NAME_A’ => { ARGCOUNT => ARGCOUNT_ONE, DEFAULT => “usera” },
‘SUDO_ACCOUNT_NAME_B’ => { ARGCOUNT => ARGCOUNT_ONE, DEFAULT => “userb” },
‘SUDO_ACCOUNT_NAME_C’ => { ARGCOUNT => ARGCOUNT_ONE, DEFAULT => “userc” },
# user defined variables for the DIASER filling mechanism / fill_diaser.pl
‘FILL_START_TIME’ => { ARGCOUNT => ARGCOUNT_ONE, DEFAULT => “10″ },
‘VOLUME_DIR’ => { ARGCOUNT => ARGCOUNT_ONE, DEFAULT => “/mnt/bkp/” },
‘DIFF_CONST_PREFIX’ => { ARGCOUNT => ARGCOUNT_ONE, DEFAULT => “diff” },
…