This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% if var -%> | |
ok | |
<% else -%> | |
ng | |
<% end -%> | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
module Kernel | |
alias :default_p :p | |
def p(*args, &block) | |
case RUBY_PLATFORM | |
when /linux/ | |
require 'n' | |
n(*args, &block) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Commented entries have reasonable defaults. | |
### Uncomment to edit them. | |
Section: misc | |
Priority: optional | |
Standards-Version: 3.6.2 | |
Package: appserver-setup | |
Version: 1.0 | |
Maintainer: Shin-ichiro OGAWA <[email protected]> | |
# Pre-Depends: <comma-separated list of packages> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d-i partman-auto/expert_recipe string \ | |
boot-root :: \ | |
50 100000 100 ext3 \ | |
$primary{ } $bootable{ } \ | |
method{ format } format{ } \ | |
use_filesystem{ } filesystem{ ext3 } \ | |
mountpoint{ /boot } \ | |
. \ | |
100 10000 5000 ext3 \ | |
method{ format } format{ } \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Priority | |
debconf debconf/priority select critical | |
#### Contents of the preconfiguration file (for lenny) | |
### Localization | |
# Locale sets language and country. | |
d-i debian-installer/locale string ja_JP.UTF-8 | |
# Keyboard selection. | |
#d-i console-tools/archs select at |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Commented entries have reasonable defaults. | |
### Uncomment to edit them. | |
Section: misc | |
Priority: optional | |
Standards-Version: 3.6.2 | |
Package: dbserver-setup | |
Version: 1.0 | |
Maintainer: Shin-ichiro OGAWA <[email protected]> | |
# Pre-Depends: <comma-separated list of packages> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Priority | |
debconf debconf/priority select critical | |
#### Contents of the preconfiguration file (for lenny) | |
### Localization | |
# Locale sets language and country. | |
d-i debian-installer/locale string ja_JP.UTF-8 | |
# Keyboard selection. | |
#d-i console-tools/archs select at |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dir { | |
ArchiveDir "/home/ogawa/work"; | |
OverrideDir "indices"; | |
CacheDir "/tmp"; | |
}; | |
TreeDefault { | |
Directory "pool/"; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dir { | |
ArchiveDir "/home/ogawa/work"; | |
OverrideDir "indices"; | |
CacheDir "/tmp"; | |
}; | |
TreeDefault { | |
Directory "pool/"; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APT { | |
FTPArchive { | |
Release { | |
Origin "debian-cd"; | |
Label "mylenny"; | |
Suite "testing"; | |
Version "0.1"; | |
Codename "lenny"; | |
Architectures "i386"; | |
Components "main contrib"; |