mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
* release: Defaulted WSL version to WSL2 (LP1995083) * release: added lxfs as WSL1 filesystem (LP1995083) * release: FStype obtained via /proc/mounts (LP1995083) * Update release/release.go Co-authored-by: Alberto Mardegan <mardy@users.sourceforge.net> * Added dependency cycle comment * Added scanner error * Update release/release.go Co-authored-by: Miguel Pires <miguelpires94@gmail.com> * release: Added error log TODO comment * Removed TestFilesystemRootType * release: Made mockWSLsetup API more readable * release: Changed FsType mock to prevent reading / * release: added error check in MockFilesystemRootType Co-authored-by: Alberto Mardegan <mardy@users.sourceforge.net> Co-authored-by: Miguel Pires <miguelpires94@gmail.com>
51 lines
1.3 KiB
Go
51 lines
1.3 KiB
Go
// -*- Mode: Go; indent-tabs-mode: t -*-
|
|
|
|
/*
|
|
* Copyright (C) 2014-2015 Canonical Ltd
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 3 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
package release
|
|
|
|
var (
|
|
ReadOSRelease = readOSRelease
|
|
)
|
|
|
|
func MockOSReleasePath(filename string) (restore func()) {
|
|
old := osReleasePath
|
|
oldFallback := fallbackOsReleasePath
|
|
osReleasePath = filename
|
|
fallbackOsReleasePath = filename
|
|
return func() {
|
|
osReleasePath = old
|
|
fallbackOsReleasePath = oldFallback
|
|
}
|
|
}
|
|
|
|
func MockFileExists(mockFileExists func(string) bool) (restorer func()) {
|
|
// Cannot use testutil.Backup due to import loop
|
|
old := fileExists
|
|
fileExists = mockFileExists
|
|
return func() {
|
|
fileExists = old
|
|
}
|
|
}
|
|
|
|
var (
|
|
GetWSLVersion = getWSLVersion
|
|
FilesystemRootType = filesystemRootType
|
|
ProcMountsPath = &procMountsPath
|
|
)
|