rabbit-slide-znz-lilo-20171217 2017.12.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rabbit +1 -0
- data/README.md +23 -0
- data/Rakefile +17 -0
- data/config.yaml +20 -0
- data/lilo-20171217.md +75 -0
- data/pdf/lilo-20171217-lilo-20171217.pdf +0 -0
- metadata +63 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: d36f22b84010092b2bd187b7e638cf5ce976d424
|
4
|
+
data.tar.gz: ef0362da59970340f92d8ef97691edfe6d45ec86
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7a6a607f02ae0df105c6c7c3704fd8c3ee86b46b1e18b2492d019e51748bbb106bba5a0e1d03f80987d963e53c552d14a18d00cf9a06fce880584d304cebdc59
|
7
|
+
data.tar.gz: 7cfa7b3919fe0551b1a700cf966effdf973d23b75a3720a00ab80497601c25a53c3579c231619eda491f9a781bb3924411cbb88292a413cc122679511a820d9e
|
data/.rabbit
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
lilo-20171217.md
|
data/README.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# lilo.linux.or.jp の話 (2017年12月)
|
2
|
+
|
3
|
+
前回の発表以降の lilo.linux.or.jp の管理の話をします。
|
4
|
+
|
5
|
+
## 作者向け
|
6
|
+
|
7
|
+
### 表示
|
8
|
+
|
9
|
+
rake
|
10
|
+
|
11
|
+
### 公開
|
12
|
+
|
13
|
+
rake publish
|
14
|
+
|
15
|
+
## 閲覧者向け
|
16
|
+
|
17
|
+
### インストール
|
18
|
+
|
19
|
+
gem install rabbit-slide-znz-lilo-20171217
|
20
|
+
|
21
|
+
### 表示
|
22
|
+
|
23
|
+
rabbit rabbit-slide-znz-lilo-20171217.gem
|
data/Rakefile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
require "rabbit/task/slide"
|
2
|
+
|
3
|
+
# Edit ./config.yaml to customize meta data
|
4
|
+
|
5
|
+
spec = nil
|
6
|
+
Rabbit::Task::Slide.new do |task|
|
7
|
+
spec = task.spec
|
8
|
+
# spec.files += Dir.glob("doc/**/*.*")
|
9
|
+
# spec.files -= Dir.glob("private/**/*.*")
|
10
|
+
# spec.add_runtime_dependency("YOUR THEME")
|
11
|
+
end
|
12
|
+
|
13
|
+
desc "Tag #{spec.version}"
|
14
|
+
task :tag do
|
15
|
+
sh("git", "tag", "-a", spec.version.to_s, "-m", "Publish #{spec.version}")
|
16
|
+
sh("git", "push", "--tags")
|
17
|
+
end
|
data/config.yaml
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
id: lilo-20171217
|
3
|
+
base_name: lilo-20171217
|
4
|
+
tags:
|
5
|
+
- debian
|
6
|
+
presentation_date: 2017/12/17
|
7
|
+
version: 2017.12.17
|
8
|
+
licenses: []
|
9
|
+
slideshare_id: lilolinuxorjp-201712
|
10
|
+
speaker_deck_id: lilo-dot-linux-dot-or-dot-jp-falsehua-2017nian-12yue
|
11
|
+
ustream_id:
|
12
|
+
vimeo_id:
|
13
|
+
youtube_id:
|
14
|
+
author:
|
15
|
+
markup_language: :markdown
|
16
|
+
name: Kazuhiro NISHIYAMA
|
17
|
+
email: zn@mbf.nifty.com
|
18
|
+
rubygems_user: znz
|
19
|
+
slideshare_user: znzjp
|
20
|
+
speaker_deck_user: znz
|
data/lilo-20171217.md
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
# lilo.linux.or.jp の話 (2017年12月)
|
2
|
+
|
3
|
+
author
|
4
|
+
: Kazuhiro NISHIYAMA
|
5
|
+
|
6
|
+
content-source
|
7
|
+
: LILO 20周年記念ミートアップ
|
8
|
+
|
9
|
+
date
|
10
|
+
: 2017/12/17
|
11
|
+
|
12
|
+
allotted-time
|
13
|
+
: 5m
|
14
|
+
|
15
|
+
theme
|
16
|
+
: lightning-simple
|
17
|
+
|
18
|
+
# lilo.linux.or.jp とは?
|
19
|
+
|
20
|
+
主な用途:
|
21
|
+
|
22
|
+
* LILO の Web サーバー (apache)
|
23
|
+
* ML サーバー (mailman)
|
24
|
+
|
25
|
+
# 環境
|
26
|
+
|
27
|
+
* さくらの VPS
|
28
|
+
* Debian GNU/Linux
|
29
|
+
|
30
|
+
# 今回の話
|
31
|
+
|
32
|
+
前回以降の話
|
33
|
+
|
34
|
+
* Web コンテンツ置き場の変更
|
35
|
+
|
36
|
+
# Web コンテンツ置き場の変更
|
37
|
+
|
38
|
+
- GitHub から GitLab.com へ
|
39
|
+
|
40
|
+
# GitHub
|
41
|
+
|
42
|
+
- としさんの private リポジトリを使わせてもらっていた
|
43
|
+
- 他で使っていて作れる数に余裕があったから
|
44
|
+
- 支払い忘れで少しの間消えていたので移転することに
|
45
|
+
|
46
|
+
# 選択肢
|
47
|
+
|
48
|
+
- Bitbucket : プライベートは5ユーザーまで無料
|
49
|
+
- GitLab.com : プライベートでも無制限で無料 (EE の機能が有料というモデル)
|
50
|
+
|
51
|
+
GitHub のアカウントで GitLab.com のアカウントも作れるので GitLab.com を選択
|
52
|
+
|
53
|
+
# GitLab.com
|
54
|
+
|
55
|
+
- https://gitlab.com/lilo_jp というグループを作成
|
56
|
+
- Web コンテンツのリポジトリと管理情報のレポジトリを移転
|
57
|
+
|
58
|
+
# なぜプライベートリポジトリか?
|
59
|
+
|
60
|
+
- 管理情報のレポジトリ : パスワードなども含むので
|
61
|
+
- Web コンテンツのリポジトリ : cvs の頃の履歴も公開して良いかどうか確認できなかったため (ライセンスの問題)
|
62
|
+
|
63
|
+
# 公開レポジトリを作る?
|
64
|
+
|
65
|
+
- lilo.linux.or.jp のサブディレクトリとして
|
66
|
+
- 新しく発表資料などを公開できる場所を作る?
|
67
|
+
- 公開レポジトリで MR (merge request; GitHub の pull request) などを受け付ける
|
68
|
+
- レポジトリは `lilo_jp` グループの中に作れそう
|
69
|
+
- 名前を何にする?
|
70
|
+
- そもそも必要?
|
71
|
+
|
72
|
+
# まとめ
|
73
|
+
|
74
|
+
- プライベートレポジトリを GitHub から GitLab.com に移転しました
|
75
|
+
- 公開レポジトリを作る?
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rabbit-slide-znz-lilo-20171217
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2017.12.17
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Kazuhiro NISHIYAMA
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-12-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rabbit
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 2.0.2
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 2.0.2
|
27
|
+
description: 前回の発表以降の lilo.linux.or.jp の管理の話をします。
|
28
|
+
email:
|
29
|
+
- zn@mbf.nifty.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- ".rabbit"
|
35
|
+
- README.md
|
36
|
+
- Rakefile
|
37
|
+
- config.yaml
|
38
|
+
- lilo-20171217.md
|
39
|
+
- pdf/lilo-20171217-lilo-20171217.pdf
|
40
|
+
homepage: http://slide.rabbit-shocker.org/authors/znz/lilo-20171217/
|
41
|
+
licenses: []
|
42
|
+
metadata: {}
|
43
|
+
post_install_message:
|
44
|
+
rdoc_options: []
|
45
|
+
require_paths:
|
46
|
+
- lib
|
47
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
48
|
+
requirements:
|
49
|
+
- - ">="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
version: '0'
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
requirements: []
|
58
|
+
rubyforge_project:
|
59
|
+
rubygems_version: 2.6.13
|
60
|
+
signing_key:
|
61
|
+
specification_version: 4
|
62
|
+
summary: lilo.linux.or.jp の話 (2017年12月)
|
63
|
+
test_files: []
|