Use utils to get paths

pull/20/head
Malachi Soord 2022-02-14 21:54:49 +01:00
parent 4243ae048f
commit e4de5a16db
No known key found for this signature in database
GPG Key ID: C61BEBD6CC542333
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ func printDbDetails() {
// IsSystemReady : Checks hability of the service to execute commands (Only after "edgebox --build" is ran at least once via SSH, or if built for distribution)
func isSystemReady() bool {
_, err := os.Stat("/home/system/components/ws/.ready")
_, err := os.Stat(utils.GetPath(utils.WsPath) + ".ready")
return !os.IsNotExist(err)
}

View File

@ -226,7 +226,7 @@ func getDevicesSpaceUsage(devices []Device) []Device {
edgeappsDirSize, _ := getDirSize(utils.GetPath(utils.EdgeAppsPath))
// TODO for later: Figure out to get correct paths for each partition...
wsAppDataDirSize, _ := getDirSize("/home/system/components/ws/appdata")
wsAppDataDirSize, _ := getDirSize(utils.GetPath(utils.WsPath) + "/appdata")
if partition.Mountpoint == "/" {
edgeappsUsageSplit = edgeappsDirSize + wsAppDataDirSize