diff options
author | Joe Rayhawk <jrayhawk@cobain.omgwallhack.org> | 2010-10-16 12:00:11 -0700 |
---|---|---|
committer | Joe Rayhawk <jrayhawk@cobain.omgwallhack.org> | 2010-10-16 12:00:11 -0700 |
commit | e78bd95a94ec6623e154a2600cb02e40a9666a53 (patch) | |
tree | af213cb19821adf7bccb68dc2ebfa235f19b7424 /architecture | |
parent | 977abfe1ccbeefd3e83f3569dabda7dcd04b1998 (diff) | |
download | piny-code-e78bd95a94ec6623e154a2600cb02e40a9666a53.tar.gz piny-code-e78bd95a94ec6623e154a2600cb02e40a9666a53.zip |
Setup file overrides examples: s/config/conf
Diffstat (limited to 'architecture')
-rw-r--r-- | architecture/setup_file_overrides.mdwn | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/architecture/setup_file_overrides.mdwn b/architecture/setup_file_overrides.mdwn index 3ddde8e..6133a22 100644 --- a/architecture/setup_file_overrides.mdwn +++ b/architecture/setup_file_overrides.mdwn @@ -8,17 +8,17 @@ Use cases: /srv/git/poop.git/hooks/post-update-ikiwiki & echo This is a hook that does things! cat > /srv/ikiwiki/piny/poop.setup.pl - foreach(@{$config->{wrappers}}) { $_->{wrapper} =~ s/post-update/post-update-ikiwiki/; }; + foreach(@{$conf->{wrappers}}) { $_->{wrapper} =~ s/post-update/post-update-ikiwiki/; }; rebuildrepo poop -### Adding or removing plugins, or plugin configuration variables. +### Adding or removing plugins, or plugin confuration variables. cat > /srv/ikiwiki/piny/poop.setup.pl - push(@{$config->{add_plugins}}, 'txt'); + push(@{$conf->{add_plugins}}, 'txt'); rebuildrepo poop -### Any other special configuration requests from hosted projects. +### Any other special confuration requests from hosted projects. cat > /srv/ikiwiki/piny/poop.setup.pl - $config->{teximg_prefix} .= "\n\\newcommand{\\unit}[1]{\\ensuremath{\\, \\mathrm{#1}}}" + $conf->{teximg_prefix} .= "\n\\newcommand{\\unit}[1]{\\ensuremath{\\, \\mathrm{#1}}}" rebuildrepo poop |