From e78bd95a94ec6623e154a2600cb02e40a9666a53 Mon Sep 17 00:00:00 2001 From: Joe Rayhawk Date: Sat, 16 Oct 2010 12:00:11 -0700 Subject: Setup file overrides examples: s/config/conf --- architecture/setup_file_overrides.mdwn | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'architecture') 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 -- cgit v1.2.3