Page MenuHomePhabricator
Paste P13043

systemd-analyze hack
ActivePublic

Authored by jbond on Oct 21 2020, 2:37 PM.
Tags
None
Referenced Files
F32410285: systemd-analyze hack
Oct 21 2020, 2:37 PM
Subscribers
None
#!/bin/sh
case $2 in
*bananas*|*Mooby*)
echo "$2"
exit 1
;;
*)
exit 0
esac
exit 0