summaryrefslogtreecommitdiff
path: root/architecture/setup_file_overrides.mdwn
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2010-10-29 19:46:24 -0500
committerBryan Bishop <kanzure@gmail.com>2010-10-29 19:46:24 -0500
commit7786ce2a332b0eba4b3ca7c57f906a32e8715da3 (patch)
tree5a9fe32b69a93f41ae2ac82a50788fe50c0d86fb /architecture/setup_file_overrides.mdwn
parent413373be9ab30eb21b564cdc180cb2dcda77bfeb (diff)
downloadpiny-code-7786ce2a332b0eba4b3ca7c57f906a32e8715da3.tar.gz
piny-code-7786ce2a332b0eba4b3ca7c57f906a32e8715da3.zip
Starting repo cleanup to make this not so awful
Diffstat (limited to 'architecture/setup_file_overrides.mdwn')
-rw-r--r--architecture/setup_file_overrides.mdwn24
1 files changed, 0 insertions, 24 deletions
diff --git a/architecture/setup_file_overrides.mdwn b/architecture/setup_file_overrides.mdwn
deleted file mode 100644
index 6133a22..0000000
--- a/architecture/setup_file_overrides.mdwn
+++ /dev/null
@@ -1,24 +0,0 @@
-Use cases:
-
-### Adding post-update hooks, which requires diverting Ikiwiki's hook.
-
- mv /srv/git/poop.git/hooks/post-update /srv/git/poop.git/hooks/post-update-ikiwiki
- cat > /srv/git/poop.git/hooks/post-update
- #!/bin/sh
- /srv/git/poop.git/hooks/post-update-ikiwiki &
- echo This is a hook that does things!
- cat > /srv/ikiwiki/piny/poop.setup.pl
- foreach(@{$conf->{wrappers}}) { $_->{wrapper} =~ s/post-update/post-update-ikiwiki/; };
- rebuildrepo poop
-
-### Adding or removing plugins, or plugin confuration variables.
-
- cat > /srv/ikiwiki/piny/poop.setup.pl
- push(@{$conf->{add_plugins}}, 'txt');
- rebuildrepo poop
-
-### Any other special confuration requests from hosted projects.
-
- cat > /srv/ikiwiki/piny/poop.setup.pl
- $conf->{teximg_prefix} .= "\n\\newcommand{\\unit}[1]{\\ensuremath{\\, \\mathrm{#1}}}"
- rebuildrepo poop