Reaktor plugins: remove wiki-todo
This commit is contained in:
parent
2e7f0ada01
commit
c9615eed53
|
@ -13,13 +13,6 @@ with import <stockholm/lib>;
|
||||||
};
|
};
|
||||||
plugins = with pkgs.ReaktorPlugins; [
|
plugins = with pkgs.ReaktorPlugins; [
|
||||||
sed-plugin
|
sed-plugin
|
||||||
wiki-todo-add
|
|
||||||
wiki-todo-done
|
|
||||||
wiki-todo-show
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
services.nginx.virtualHosts."lassul.us".locations."/wiki-todo".extraConfig = ''
|
|
||||||
default_type "text/plain";
|
|
||||||
alias /var/lib/Reaktor/state/wiki-todo;
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -141,25 +141,5 @@ rec {
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
|
||||||
wiki-todo-add = buildSimpleReaktorPlugin "wiki-todo-add" {
|
|
||||||
pattern = "^wiki-todo: (?P<args>.*)$$";
|
|
||||||
script = pkgs.writeDash "wiki-todo-add" ''
|
|
||||||
echo "$*" >> wiki-todo
|
|
||||||
echo "added todo. check on http://lassul.us/wiki-todo"
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
wiki-todo-done = buildSimpleReaktorPlugin "wiki-todo-done" {
|
|
||||||
pattern = "^wiki-done: (?P<args>.*)$$";
|
|
||||||
script = pkgs.writeDash "wiki-todo-done" ''
|
|
||||||
${pkgs.gnugrep}/bin/grep -Fvxe "$*" wiki-todo > wiki-todo.tmp
|
|
||||||
${pkgs.coreutils}/bin/mv wiki-todo.tmp wiki-todo
|
|
||||||
echo "thank you for resolving todo: $*"
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
wiki-todo-show = buildSimpleReaktorPlugin "wiki-todo" {
|
|
||||||
pattern = "^wiki-show$";
|
|
||||||
script = pkgs.writeDash "wiki-show" ''
|
|
||||||
${pkgs.coreutils}/bin/cat wiki-todo
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue