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
#!/bin/bash | |
# | |
# chkconfig: 345 70 8 | |
# description: start up and shutdown drbd cluster. | |
# | |
# Copright 2009 | |
# Shin-ichiro OGAWA, eole(c) | |
# | |
### BEGIN INIT INFO | |
# Required-Start: $network $syslog sshd |
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 | |
# 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
#!/bin/bash | |
function print_usage { | |
echo | |
echo "move-installer-udebs source-directory destination-directory" | |
echo | |
echo "paths must be absolute" | |
echo "source-directory is the directory containing the udebs" | |
echo "destination-directory is the directory containing the pool directory" | |
} |
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"; |
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
### 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
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{ } \ |