diff options
| author | fukachan <fukachan> | 2001-04-24 11:40:58 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-04-24 11:40:58 +0000 |
| commit | dbcbca6460eb40e4843addde50b8a840a3994c00 (patch) | |
| tree | fa9b4ffc4c4f225b2dec0d6bb1c5eff9dcfab72d /fml | |
| parent | 708c7605b1c55c5c9da65ecb321c7d9e182a812c (diff) | |
| download | fml8-dbcbca6460eb40e4843addde50b8a840a3994c00.tar.gz fml8-dbcbca6460eb40e4843addde50b8a840a3994c00.tar.bz2 fml8-dbcbca6460eb40e4843addde50b8a840a3994c00.zip | |
comment on /etc/fml/main.cf
Diffstat (limited to 'fml')
| -rw-r--r-- | fml/doc/ja/tutorial/include.sgml | 3 | ||||
| -rw-r--r-- | fml/doc/ja/tutorial/install.sgml | 11 | ||||
| -rw-r--r-- | fml/doc/ja/tutorial/install/chapter.sgml | 11 | ||||
| -rw-r--r-- | fml/doc/ja/tutorial/main.cf.sgml | 86 |
4 files changed, 108 insertions, 3 deletions
diff --git a/fml/doc/ja/tutorial/include.sgml b/fml/doc/ja/tutorial/include.sgml index 5e8131c6..e8a5a192 100644 --- a/fml/doc/ja/tutorial/include.sgml +++ b/fml/doc/ja/tutorial/include.sgml @@ -1,5 +1,5 @@ <!-- - $FML: include.sgml,v 1.6 2001/04/24 10:06:37 fukachan Exp $ + $FML: include.sgml,v 1.7 2001/04/24 10:57:45 fukachan Exp $ --> <!entity versin "1.1"> @@ -15,6 +15,7 @@ <!entity terms SYSTEM "terms.sgml"> <!entity intro SYSTEM "intro.sgml"> <!entity install SYSTEM "install.sgml"> +<!entity main.cf SYSTEM "main.cf.sgml"> <!entity design SYSTEM "design.sgml"> <!entity bootloader SYSTEM "bootloader.sgml"> diff --git a/fml/doc/ja/tutorial/install.sgml b/fml/doc/ja/tutorial/install.sgml index b71addc2..e3727ca6 100644 --- a/fml/doc/ja/tutorial/install.sgml +++ b/fml/doc/ja/tutorial/install.sgml @@ -1,5 +1,5 @@ <!-- - $FML$ + $FML: install.sgml,v 1.1 2001/04/24 10:57:45 fukachan Exp $ --> <chapter id="installation"> @@ -97,6 +97,14 @@ </sect1> +<!-- + ====================================================== + main.cf の例 + ====================================================== +--> +&main.cf; + + <!-- ====================================================== --> <sect1 id="upgrade"> <title> アップグレード </title> @@ -123,4 +131,5 @@ </sect1> + </chapter> diff --git a/fml/doc/ja/tutorial/install/chapter.sgml b/fml/doc/ja/tutorial/install/chapter.sgml index b71addc2..e3727ca6 100644 --- a/fml/doc/ja/tutorial/install/chapter.sgml +++ b/fml/doc/ja/tutorial/install/chapter.sgml @@ -1,5 +1,5 @@ <!-- - $FML$ + $FML: install.sgml,v 1.1 2001/04/24 10:57:45 fukachan Exp $ --> <chapter id="installation"> @@ -97,6 +97,14 @@ </sect1> +<!-- + ====================================================== + main.cf の例 + ====================================================== +--> +&main.cf; + + <!-- ====================================================== --> <sect1 id="upgrade"> <title> アップグレード </title> @@ -123,4 +131,5 @@ </sect1> + </chapter> diff --git a/fml/doc/ja/tutorial/main.cf.sgml b/fml/doc/ja/tutorial/main.cf.sgml new file mode 100644 index 00000000..72ff7626 --- /dev/null +++ b/fml/doc/ja/tutorial/main.cf.sgml @@ -0,0 +1,86 @@ +<!-- + $FML$ +--> +<sect1 id="main.cf"> +<title> /etc/fml/main.cf </title> + +<para> +/etc/fml/main.cf は各MLの設定ではありません。 +これは、バージョン依存性を解決するための設定ファイルです。 +fml のプログラム群が起動する時に参照します。 +</para> + + +<para> +<screen> +# fml version +# This is important +# Example: fml 5.0 +# fml-current YYYYMMDD +# fml-devel YYYYMMDD +fml_version = current-20010423 + + +### +### DIRECTORIES +### + + +# $config_dir holds the global main configuration and +# several version-dependent default configurations +# Example: /etc/fml +config_dir = /etc/fml + +# Example: /etc/fml/defaults/$fml_version +default_config_dir = $config_dir/defaults/$fml_version + +# Example: /usr/local +default_prefix = /usr/local + + +# Example: /usr/local/libexec/fml +libexec_prefix = $default_prefix + +# Example: /usr/local/lib/fml +lib_prefix = $default_prefix + +# Example: /usr/local/libexec/fml/$fml_version +libexec_dir = $libexec_prefix/libexec/fml/$fml_version + +# Example: /usr/local/lib/fml/$fml_version +lib_dir = $lib_prefix/lib/fml/$fml_version + +# site local library location +# which is prepared but not used by fml itself +local_lib_dir = $default_prefix/lib/fml/site_local + + +# ml's home directories +# $ml_home_dir (e.g. /var/spool/ml/elena ) is taken from loader's @ARGV. +# This is compatible with fml 4.0. +# Example: /var/spool/ml +ml_home_prefix = /var/spool/ml + + + +### +### CONFIGURATION FILES AND DEFAULT PARAMETERS +### + + +# default domain +default_domain = fml.org + + +# version dependent default_config.cf location +# whic holds +# Example: /etc/fml/defaults/5.0/default_config.cf +default_config = $config_dir/defaults/$fml_version/default_config.cf + + +# domain specific configurations +# Example: /etc/fml/domains/fml.org/default_config.cf +domain_default_config = $config_dir/domains/$default_domain/config.cf +</screen> +</para> +</sect1> |
