Skip to content
This repository was archived by the owner on Mar 7, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions linux/automated-installer/automated-installer
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,9 @@ check_arguments() {
accepteula)
accept_eula_arg='--accepteula'
;;
activation-service)
activation_service=1
;;
force)
force_arg='-f'
;;
Expand Down Expand Up @@ -529,6 +532,7 @@ run_initialize_tsm() {
initialize_tsm_cmd=("${install_dir}/packages/scripts.${version_string}/initialize-tsm")

[ -n "${accept_eula_arg}" ] && initialize_tsm_cmd+=("--accepteula")
[ ${activation_service} -eq 1 ] && initialize_tsm_cmd+=("--activation-service")
[ -n "${force_arg}" ] && initialize_tsm_cmd+=("-f")
[ ${verbose} -eq 0 ] && initialize_tsm_cmd+=("-q") # "not verbose" becomes "quiet"
[ ${add_user_to_groups} -eq 0 ] && initialize_tsm_cmd+=("-g")
Expand Down Expand Up @@ -654,6 +658,7 @@ main() {
local gateway_port=80
local registration_file=''
local accept_eula_arg=''
local activation_service=0
local force_arg=''
local license_key=''
local group_username=''
Expand Down
6 changes: 4 additions & 2 deletions linux/automated-installer/reg_templ.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,7 @@
"state":"[value]",
"department":"[value]",
"first_name":"[value]",
"email":"[value]"
}
"email":"[value]",
"company_employees":"[value]",
"opt_in":"[value]"
}
4 changes: 3 additions & 1 deletion windows/tsm/SilentInstaller/registration.template.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,7 @@
"city" : "[value]",
"state" : "[value]",
"zip" : "[value]",
"country" : "[value]"
"country" : "[value]",
"company_employees" : "[value]",
"opt_in" : "[value]"
}