Latest
This commit is contained in:
parent
bdaf704a7d
commit
f07bbaa8bc
3 changed files with 4 additions and 5 deletions
|
@ -153,7 +153,6 @@ applyRootConfig() {
|
|||
|
||||
### Copy Autorestic configurations
|
||||
logg info "Copying ${XDG_CONFIG_HOME:-$HOME/.config}/autorestic/autorestic-system.yml file to $ROOT_FOLDER/.autorestic.yml" && sudo cp -f "${XDG_CONFIG_HOME:-$HOME/.config}/autorestic/autorestic-system.yml" "$ROOT_FOLDER/.autorestic.yml"
|
||||
logg info "Removing ${XDG_CONFIG_HOME:-$HOME/.config}/autorestic/autorestic-system.yml" && sudo rm -f "${XDG_CONFIG_HOME:-$HOME/.config}/autorestic/autorestic-system.yml"
|
||||
logg info "Applying proper permissions to $ROOT_FOLDER/.autorestic.yml" && sudo chmod 600 "$ROOT_FOLDER/.autorestic.yml"
|
||||
fi
|
||||
}
|
||||
|
|
|
@ -26,12 +26,12 @@
|
|||
"displaySwitchWinLinContainers": false,
|
||||
"displayed18362Deprecation": false,
|
||||
"displayedElectronPopup": [],
|
||||
"displayedOnboarding": false,
|
||||
"displayedOnboarding": true,
|
||||
"dockerAppLaunchPath": "/Applications/Docker.app",
|
||||
"dockerBinInstallPath": "system",
|
||||
"enableDefaultDockerSocket": true,
|
||||
"enableIntegrationWithDefaultWslDistro": false,
|
||||
"enableIntegrityCheck": false,
|
||||
"enableIntegrityCheck": true,
|
||||
"enableSegmentDebug": false,
|
||||
"enableWasmShims": true,
|
||||
"enhancedContainerIsolation": false,
|
||||
|
@ -72,7 +72,7 @@
|
|||
"showAnnouncementNotifications": false,
|
||||
"showExtensionsSystemContainers": false,
|
||||
"showGeneralNotifications": false,
|
||||
"showInstallScreen": true,
|
||||
"showInstallScreen": false,
|
||||
"showKubernetesSystemContainers": false,
|
||||
"showSurveyNotifications": false,
|
||||
"skipUpdateToWSLPrompt": false,
|
||||
|
|
|
@ -496,7 +496,7 @@ async function main() {
|
|||
log(`Running post-install script for ${x.listKey}`)
|
||||
return (postField && runScript(x.listKey, x[postField])) || Promise.resolve()
|
||||
})
|
||||
await Promise.all(postScripts)
|
||||
await Promise.allSettled(postScripts)
|
||||
}
|
||||
|
||||
main()
|
||||
|
|
Loading…
Reference in a new issue