diff options
author | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2010-10-16 01:04:28 -0700 |
---|---|---|
committer | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2010-10-16 01:04:28 -0700 |
commit | 6fc8a2a7f58d5afae073dbda373713522c919adf (patch) | |
tree | d740684e6d9a2f7f69eba295e9c92f3fd30aeccd /architecture/setup_file_overrides.mdwn | |
parent | 87c79ea1a025d1f96f72a3853fae39f1fa2a924f (diff) | |
download | piny-code-6fc8a2a7f58d5afae073dbda373713522c919adf.tar.gz piny-code-6fc8a2a7f58d5afae073dbda373713522c919adf.zip |
Architecture: Updating status of interfaces
Diffstat (limited to 'architecture/setup_file_overrides.mdwn')
-rw-r--r-- | architecture/setup_file_overrides.mdwn | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/architecture/setup_file_overrides.mdwn b/architecture/setup_file_overrides.mdwn index 0d54937..3ddde8e 100644 --- a/architecture/setup_file_overrides.mdwn +++ b/architecture/setup_file_overrides.mdwn @@ -7,18 +7,18 @@ Use cases: #!/bin/sh /srv/git/poop.git/hooks/post-update-ikiwiki & echo This is a hook that does things! - cat > /srv/ikiwiki/piny/poop.overrides.pl + cat > /srv/ikiwiki/piny/poop.setup.pl foreach(@{$config->{wrappers}}) { $_->{wrapper} =~ s/post-update/post-update-ikiwiki/; }; rebuildrepo poop ### Adding or removing plugins, or plugin configuration variables. - cat > /srv/ikiwiki/piny/poop.overrides.pl + cat > /srv/ikiwiki/piny/poop.setup.pl push(@{$config->{add_plugins}}, 'txt'); rebuildrepo poop ### Any other special configuration requests from hosted projects. - cat > /srv/ikiwiki/piny/poop.overrides.pl + cat > /srv/ikiwiki/piny/poop.setup.pl $config->{teximg_prefix} .= "\n\\newcommand{\\unit}[1]{\\ensuremath{\\, \\mathrm{#1}}}" rebuildrepo poop |