Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
70449f16
Commit
70449f16
authored
Feb 03, 2015
by
Brendan Burns
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4058 from brendandburns/rel10
fix build on non-linux hosts.
parents
1469f692
ab0acae7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
unsupported.go
pkg/util/mount/unsupported.go
+4
-4
No files found.
pkg/util/mount/unsupported.go
View file @
70449f16
...
@@ -21,16 +21,16 @@ package mount
...
@@ -21,16 +21,16 @@ package mount
const
FlagBind
=
0
const
FlagBind
=
0
const
FlagReadOnly
=
0
const
FlagReadOnly
=
0
type
m
ounter
struct
{}
type
M
ounter
struct
{}
func
(
mounter
*
m
ounter
)
Mount
(
source
string
,
target
string
,
fstype
string
,
flags
uintptr
,
data
string
)
error
{
func
(
mounter
*
M
ounter
)
Mount
(
source
string
,
target
string
,
fstype
string
,
flags
uintptr
,
data
string
)
error
{
return
nil
return
nil
}
}
func
(
mounter
*
m
ounter
)
Unmount
(
target
string
,
flags
int
)
error
{
func
(
mounter
*
M
ounter
)
Unmount
(
target
string
,
flags
int
)
error
{
return
nil
return
nil
}
}
func
(
mounter
*
m
ounter
)
List
()
([]
MountPoint
,
error
)
{
func
(
mounter
*
M
ounter
)
List
()
([]
MountPoint
,
error
)
{
return
[]
MountPoint
{},
nil
return
[]
MountPoint
{},
nil
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment