github.com/opencontainers/umoci@v0.4.8-0.20240508124516-656e4836fb0d/oci/config/convert/utils_unix.go (about)

     1  //go:build !linux
     2  // +build !linux
     3  
     4  /*
     5   * umoci: Umoci Modifies Open Containers' Images
     6   * Copyright (C) 2016-2019 SUSE LLC.
     7   *
     8   * Licensed under the Apache License, Version 2.0 (the "License");
     9   * you may not use this file except in compliance with the License.
    10   * You may obtain a copy of the License at
    11   *
    12   *    http://www.apache.org/licenses/LICENSE-2.0
    13   *
    14   * Unless required by applicable law or agreed to in writing, software
    15   * distributed under the License is distributed on an "AS IS" BASIS,
    16   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    17   * See the License for the specific language governing permissions and
    18   * limitations under the License.
    19   */
    20  
    21  package convert
    22  
    23  // getUnprivilegedMountFlags should return the set of mount flags which are
    24  // locked by CL_UNPRIVILEGED. However, user namespaces don't exist outside
    25  // Linux.
    26  func getUnprivilegedMountFlags(path string) ([]string, error) {
    27  	return nil, nil
    28  }