Update 2 files

- /home/.chezmoi.yaml.tmpl
- /home/dot_local/bin/executable_install-program
This commit is contained in:
Brian Zalewski 2023-04-18 03:56:12 +00:00
parent d86e17c5ef
commit 546f157cae
2 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@
{{- $githubUsername := (default "ProfessorManhattan" (env "GITHUB_USERNAME")) -}} {{- $githubUsername := (default "ProfessorManhattan" (env "GITHUB_USERNAME")) -}}
{{- $gmailAddress := (default "blzalewski@gmail.com" (env "GMAIL_ADDRESS")) -}} {{- $gmailAddress := (default "blzalewski@gmail.com" (env "GMAIL_ADDRESS")) -}}
{{- $gpgKeyId := (default "0xF0A300E4199A1C33" (env "KEYID")) -}} {{- $gpgKeyId := (default "0xF0A300E4199A1C33" (env "KEYID")) -}}
{{- $hostname := (default "alpha" (env "HOSTNAME_ID")) -}} {{- $hostname := (default "alpha" (env "HOST")) -}}
{{- $locale := (output "echo" "$LANG") }} {{- $locale := (output "echo" "$LANG") }}
{{- $name := (default "Brian Zalewski" (env "FULL_NAME")) -}} {{- $name := (default "Brian Zalewski" (env "FULL_NAME")) -}}
{{- $restricted := (default false (env "WORK_ENVIRONMENT")) -}} {{- $restricted := (default false (env "WORK_ENVIRONMENT")) -}}
@ -106,7 +106,7 @@
{{- if not (env "PUBLIC_SERVICES_DOMAIN") -}} {{- if not (env "PUBLIC_SERVICES_DOMAIN") -}}
{{- $domain = promptStringOnce $data.user "domain" "Domain name" $domain -}} {{- $domain = promptStringOnce $data.user "domain" "Domain name" $domain -}}
{{- end -}} {{- end -}}
{{- if not (env "HOSTNAME_ID") -}} {{- if not (env "HOST") -}}
{{- $hostname = promptStringOnce $data.host "hostname" "Hostname ID" $hostname -}} {{- $hostname = promptStringOnce $data.host "hostname" "Hostname ID" $hostname -}}
{{- end -}} {{- end -}}

View file

@ -123,7 +123,7 @@ const osPlatform = osPlatformData === 'win32' ? 'windows' : osPlatformData
// Download the installation map // Download the installation map
async function downloadInstallData() { async function downloadInstallData() {
const response = await fetch('https://gitlab.com/megabyte-labs/install.doctor/-/raw/master/software.yml') const response = await fetch('https://github.com/megabyte-labs/install.doctor/raw/master/software.yml')
if (response.ok) { if (response.ok) {
const text = await response.text() const text = await response.text()
return YAML.parse(text) return YAML.parse(text)