commit f2ea207655f9c6154de1c66823598a3925870fb2b02e2c7d6fbe289373275cad Author: Dominique Leuenberger Date: Thu Feb 15 12:23:04 2018 +0000 Accepting request 575507 from devel:CaaSP:Head:ControllerNode - Add libcontainers-common package. OBS-URL: https://build.opensuse.org/request/show/575507 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libcontainers-common?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/libcontainers-common.changes b/libcontainers-common.changes new file mode 100644 index 0000000..2f1aba6 --- /dev/null +++ b/libcontainers-common.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Thu Feb 8 13:07:24 UTC 2018 - vrothberg@suse.com + +- Add libcontainers-common package. diff --git a/libcontainers-common.spec b/libcontainers-common.spec new file mode 100644 index 0000000..e26516d --- /dev/null +++ b/libcontainers-common.spec @@ -0,0 +1,47 @@ +# +# spec file for package libcontainers-common +# +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +Name: libcontainers-common +Version: 0.0.1 +Release: 0 +Summary: Configuration files common to github.com/containers +License: Apache-2.0 +Group: System/Management +URL: https://github.com/containers +Source0: policy.json + +%description +Configuration files common to github.com/containers, a collection of golang +libraries, configuration files, manpages, and debugging tools used by various +tools, such as skopeo, cri-o and podman. + +%prep +# nothing to do + +%build +# nothing to do + +%install +install -d -m 0755 %{buildroot}/%{_sysconfdir}/containers +install -D -m 0644 %{SOURCE0} %{buildroot}/%{_sysconfdir}/containers/policy.json + +%files +%dir %{_sysconfdir}/containers +%config %{_sysconfdir}/containers/policy.json + +%changelog diff --git a/policy.json b/policy.json new file mode 100644 index 0000000..c6630c5 --- /dev/null +++ b/policy.json @@ -0,0 +1,14 @@ +{ + "default": [ + { + "type": "insecureAcceptAnything" + } + ], + "transports": + { + "docker-daemon": + { + "": [{"type":"insecureAcceptAnything"}] + } + } +}