• R/O
  • HTTP
  • SSH
  • HTTPS

grid-chef-repo: Commit

Grid環境構築用のChefリポジトリです。


Commit MetaInfo

Revision5babbcd3a607678c2c9f443b983945d779b33f5d (tree)
Time2021-06-10 17:53:24
Authorwhitestar <whitestar@gaea...>
Commiterwhitestar

Log Message

lxcs-0.1.8

Change Summary

Incremental Difference

--- a/cookbooks/lxcs/CHANGELOG.md
+++ b/cookbooks/lxcs/CHANGELOG.md
@@ -1,5 +1,10 @@
11 # lxcs CHANGELOG
22
3+0.1.8
4+-----
5+- installs `lxc-templates` package.
6+- does not install `yum` package.
7+
38 0.1.7
49 -----
510 - adds the Ubuntu 17.10 (LXC 2.1) support.
--- a/cookbooks/lxcs/attributes/default.rb
+++ b/cookbooks/lxcs/attributes/default.rb
@@ -2,7 +2,7 @@
22 # Cookbook Name:: lxcs
33 # Attributes:: default
44 #
5-# Copyright 2017, whitestar
5+# Copyright 2017-2021, whitestar
66 #
77 # Licensed under the Apache License, Version 2.0 (the "License");
88 # you may not use this file except in compliance with the License.
--- a/cookbooks/lxcs/metadata.rb
+++ b/cookbooks/lxcs/metadata.rb
@@ -14,7 +14,7 @@ chef_version '>= 12'
1414 # https://wiki.debian.org/LXC
1515 # https://wiki.debian.org/LXD
1616 #supports 'debian', '>= 8.0'
17-supports 'ubuntu', '>= 16.04'
17+supports 'ubuntu', '>= 18.04'
1818
1919 depends 'platform_utils', '>= 0.3.1'
2020 depends 'ssl_cert', '>= 0.3.7'
--- a/cookbooks/lxcs/recipes/lxc.rb
+++ b/cookbooks/lxcs/recipes/lxc.rb
@@ -2,7 +2,7 @@
22 # Cookbook Name:: lxcs
33 # Recipe:: lxc
44 #
5-# Copyright 2017, whitestar
5+# Copyright 2017-2021, whitestar
66 #
77 # Licensed under the Apache License, Version 2.0 (the "License");
88 # you may not use this file except in compliance with the License.
@@ -22,7 +22,9 @@ lxc_conf = node['lxcs']['lxc']
2222 [
2323 'curl',
2424 'lxc',
25- 'yum' # CentOS on lxc
25+ 'lxc-templates',
26+ # Note: Ubuntu 20.04 LTS does not support yum package.
27+ #'yum' # CentOS on lxc
2628 ].each {|pkg|
2729 resources(package: pkg) rescue package pkg do
2830 action :install
--- a/cookbooks/lxcs/version
+++ b/cookbooks/lxcs/version
@@ -1 +1 @@
1-0.1.7
1+0.1.8
Show on old repository browser