From 6a32563caa883bd11da1b255c38358e481c42ad7 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Wed, 11 Nov 2015 01:17:13 +0000 Subject: systemctl: return EXIT_SUCCESS on success --- src/systemctl/systemctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/systemctl') diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 85deb4a761..d244389ddd 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -7815,5 +7815,5 @@ finish: release_busses(); - return r < 0 ? EXIT_FAILURE : r; + return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS; } -- cgit v1.2.3-54-g00ecf