Compare commits

...

4 Commits

Author SHA1 Message Date
William Hubbs
670b72b328 release openrc-0.10.2 2012-05-27 10:28:21 -05:00
William Hubbs
3ebaa31edb termencoding should not run on lxc
reported-by: Alexey Shvetsov <alexxy@gentoo.org>
2012-05-27 10:20:07 -05:00
William Hubbs
0f3813c8cf Release openrc-0.10.1 2012-05-24 10:46:07 -05:00
Mike Frysinger
28c13790ff rc: fix inverted string compare logic
X-Gentoo-Bug: 417227
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=417227
Reported-by: sphakka <marcoep@gmail.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2012-05-24 10:36:11 -05:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
NAME= openrc
VERSION= 0.10
VERSION= 0.10.2
PKG= ${NAME}-${VERSION}

View File

@@ -9,7 +9,7 @@ ttyn=${rc_tty_number:-${RC_TTY_NUMBER:-12}}
depend()
{
keyword -openvz -uml -vserver -xenu
keyword -lxc -openvz -uml -vserver -xenu
use root
after bootmisc
}

View File

@@ -343,7 +343,7 @@ do_mark_service(int argc, char **argv)
if (service == NULL || *service == '\0')
eerrorx("%s: no service specified", applet);
if (strncmp(applet, "mark_", 5) &&
if (!strncmp(applet, "mark_", 5) &&
(bit = lookup_service_state(applet + 5)))
ok = rc_service_mark(service, bit);
else