Skip to content

Commit a018e37

Browse files
committed
Add ci_fixes
1 parent 396cddd commit a018e37

File tree

5 files changed

+65
-0
lines changed

5 files changed

+65
-0
lines changed

.kitchen.local.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ suites:
3838
- name: local
3939
run_list:
4040
- recipe[boxcutter_ohai]
41+
- recipe[ci_fixes]
4142
- recipe[boxcutter_init]

cookbooks/ci_fixes/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
ci_fixes Cookbook
2+
======================
3+
Stub cookbook to apply various fixes for the CI to work
4+
5+
Requirements
6+
------------
7+
8+
Attributes
9+
----------
10+
11+
Usage
12+
-----
13+
NOT MEANT FOR USAGE. Just here for our kitchen setup.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# vim: syntax=ruby:expandtab:shiftwidth=2:softtabstop=2:tabstop=2
2+
#
3+
# Copyright (c) 2020-present, Facebook, Inc.
4+
# All rights reserved.
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#

cookbooks/ci_fixes/metadata.rb

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Copyright (c) 2018-present, Facebook, Inc.
2+
name 'ci_fixes'
3+
maintainer 'Facebook'
4+
maintainer_email 'noreply@facebook.com'
5+
license 'Apache-2.0'
6+
description 'Misc fixes to make the CI work'
7+
source_url 'https://github.com/facebook/chef-cookbooks/'
8+
version '0.0.1'
9+
supports 'centos'
10+
supports 'debian'
11+
supports 'fedora'
12+
supports 'ubuntu'
13+
depends 'fb_helpers'
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#
2+
# Cookbook Name:: ci_fixes
3+
# Recipe:: default
4+
#
5+
# Copyright (c) 2020-present, Facebook, Inc.
6+
# All rights reserved.
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+
node.default['fb_systemd']['logind']['enable'] = false

0 commit comments

Comments
 (0)