diff options
Diffstat (limited to '')
-rw-r--r-- | debian/patches/0001-Add-moo-feature.patch | 33 | ||||
-rw-r--r-- | debian/patches/series | 1 |
2 files changed, 34 insertions, 0 deletions
diff --git a/debian/patches/0001-Add-moo-feature.patch b/debian/patches/0001-Add-moo-feature.patch new file mode 100644 index 0000000..a72848d --- /dev/null +++ b/debian/patches/0001-Add-moo-feature.patch @@ -0,0 +1,33 @@ +Author: Alexander Wirt <formorer@debian.org> +Description: Add moo feature +Forwarded: no, critical value-add business feature for Debian +--- a/ip/ip.c ++++ b/ip/ip.c +@@ -87,6 +87,19 @@ + return 0; + } + ++static int do_moo(int argc, char **argv) ++{ ++ fprintf(stderr, ++"\n" ++" _ __ ___ ___ ___\n" ++"| '_ ` _ \\ / _ \\ / _ \\\n" ++"| | | | | | (_) | (_) |\n" ++"|_| |_| |_|\\___/ \\___/\n" ++"\n\n" ++"P.S. no real cows were harmed for this moo\n"); ++ exit(1); ++} ++ + static const struct cmd { + const char *cmd; + int (*func)(int argc, char **argv); +@@ -125,6 +138,7 @@ + { "ioam", do_ioam6 }, + { "help", do_help }, + { "stats", do_ipstats }, ++ { "moo", do_moo }, + { 0 } + }; + diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..a6cdb5e --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +0001-Add-moo-feature.patch |