mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-29 20:24:31 +00:00
govmm: Adapt license headers to kata-containers
Both projects follow the same license, Apache-2.0, but the header saying that comes from govmm is different from the one expected for the tests present on the kata-containers repo. Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
parent
6dd6577986
commit
8bcaed0b4f
@ -1,18 +1,7 @@
|
|||||||
/*
|
|
||||||
// Copyright contributors to the Virtual Machine Manager for Go project
|
// Copyright contributors to the Virtual Machine Manager for Go project
|
||||||
//
|
//
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
// you may not use this file except in compliance with the License.
|
|
||||||
// You may obtain a copy of the License at
|
|
||||||
//
|
//
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package qemu_test
|
package qemu_test
|
||||||
|
|
||||||
|
@ -1,18 +1,7 @@
|
|||||||
/*
|
|
||||||
// Copyright contributors to the Virtual Machine Manager for Go project
|
// Copyright contributors to the Virtual Machine Manager for Go project
|
||||||
//
|
//
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
// you may not use this file except in compliance with the License.
|
|
||||||
// You may obtain a copy of the License at
|
|
||||||
//
|
//
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package qemu
|
package qemu
|
||||||
|
|
||||||
|
@ -1,18 +1,7 @@
|
|||||||
/*
|
|
||||||
// Copyright contributors to the Virtual Machine Manager for Go project
|
// Copyright contributors to the Virtual Machine Manager for Go project
|
||||||
//
|
//
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
// you may not use this file except in compliance with the License.
|
|
||||||
// You may obtain a copy of the License at
|
|
||||||
//
|
//
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Package qemu provides methods and types for launching and managing QEMU
|
// Package qemu provides methods and types for launching and managing QEMU
|
||||||
// instances. Instances can be launched with the LaunchQemu function and
|
// instances. Instances can be launched with the LaunchQemu function and
|
||||||
|
@ -1,21 +1,10 @@
|
|||||||
//go:build !s390x
|
//go:build !s390x
|
||||||
// +build !s390x
|
// +build !s390x
|
||||||
|
|
||||||
/*
|
|
||||||
// Copyright contributors to the Virtual Machine Manager for Go project
|
// Copyright contributors to the Virtual Machine Manager for Go project
|
||||||
//
|
//
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
// you may not use this file except in compliance with the License.
|
|
||||||
// You may obtain a copy of the License at
|
|
||||||
//
|
//
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package qemu
|
package qemu
|
||||||
|
|
||||||
|
@ -1,20 +1,9 @@
|
|||||||
// +build s390x
|
// +build s390x
|
||||||
|
|
||||||
/*
|
|
||||||
// Copyright contributors to the Virtual Machine Manager for Go project
|
// Copyright contributors to the Virtual Machine Manager for Go project
|
||||||
//
|
//
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
// you may not use this file except in compliance with the License.
|
|
||||||
// You may obtain a copy of the License at
|
|
||||||
//
|
//
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package qemu
|
package qemu
|
||||||
|
|
||||||
|
@ -1,18 +1,7 @@
|
|||||||
/*
|
|
||||||
// Copyright contributors to the Virtual Machine Manager for Go project
|
// Copyright contributors to the Virtual Machine Manager for Go project
|
||||||
//
|
//
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
// you may not use this file except in compliance with the License.
|
|
||||||
// You may obtain a copy of the License at
|
|
||||||
//
|
//
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package qemu
|
package qemu
|
||||||
|
|
||||||
|
@ -1,18 +1,7 @@
|
|||||||
/*
|
|
||||||
// Copyright contributors to the Virtual Machine Manager for Go project
|
// Copyright contributors to the Virtual Machine Manager for Go project
|
||||||
//
|
//
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
// you may not use this file except in compliance with the License.
|
|
||||||
// You may obtain a copy of the License at
|
|
||||||
//
|
//
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package qemu
|
package qemu
|
||||||
|
|
||||||
|
@ -1,18 +1,7 @@
|
|||||||
/*
|
|
||||||
// Copyright contributors to the Virtual Machine Manager for Go project
|
// Copyright contributors to the Virtual Machine Manager for Go project
|
||||||
//
|
//
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
// you may not use this file except in compliance with the License.
|
|
||||||
// You may obtain a copy of the License at
|
|
||||||
//
|
//
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package qemu
|
package qemu
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user