test
[hcoop/zz_old/ikiwiki] / MemberManual / UsingDomtool.mdwn
1 #pragma section-numbers off
2
3 This is the chapter of the MemberManual that describes the bare minimum that you need to know concerning our use of DomTool. This is meant to be a very brief HCoop-specific overview, compared to the DomTool/UserGuide page, which is more thorough.
4
5 [[TableOfContents]]
6
7 = Configuration files =
8
9 Domtool has user-specified configuration files that determine how to set up a domain or subdomain. Each file contains all of the information needed to configure a single domain.
10
11 If you want Domtool to process these files automatically, then place them in the {{{~/.domtool}}} directory. If you are just testing out a domain temporarily, the configuration files may be placed anywhere.
12
13 By default, this {{{~/.domtool}}} directory is actually a symlink to the {{{~/.public/.domtool}}} directory. This makes your configuration files readable by anyone, but writable only by you. If you want to make them private, then do the following.
14
15 {{{
16 rm ~/.domtool
17 mkdir ~/.domtool
18 fs setacl ~/.domtool domtool read
19 # Do the following two commands if you have any files in ~/.public/.domtool
20 mv ~/.public/.domtool/* ~/.domtool
21 rmdir ~/.public/.domtool
22 }}}
23
24 = Running domtool =
25
26 In order to activate or test a domain, you must run the {{{domtool}}} command.
27
28 == Testing your configuration ==
29
30 Running the following command tests your configuration file (here called "MYDOMAIN") for errors. Make sure to give the full path to the configuration file, unless you are currently in the same directory as the configuration file.
31
32 {{{
33 domtool -tc ~/.domtool/MYDOMAIN
34 }}}
35
36 The "-tc" argument means "type-check".
37
38 == Activating your configuration ==
39
40 In order to make your changes go live, you need to run domtool without the "-tc" argument, as follows.
41
42 {{{
43 domtool ~/.domtool/MYDOMAIN
44 }}}
45
46 = Further instruction =
47
48 The intention of this page was to give you a very quick overview of the {{{domtool}}} command. To learn about how to create working configuration files, as well as brag to your friends about Domtool's excellent design, it is essential that you read the [:DomTool/UserGuide:Domtool User Guide].