[yast-commit] r52747 - in /trunk/security: package/yast2-security.changes src/Security.ycp
Author: lslezak Date: Thu Oct 30 15:47:53 2008 New Revision: 52747 URL: http://svn.opensuse.org/viewcvs/yast?rev=52747&view=rev Log: - do not check "consolekit" service, it's started automatically (bnc#436797), added "boot.clock" as an optional service Modified: trunk/security/package/yast2-security.changes trunk/security/src/Security.ycp Modified: trunk/security/package/yast2-security.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/security/package/yast2-security.changes?rev=52747&r1=52746&r2=52747&view=diff ============================================================================== --- trunk/security/package/yast2-security.changes (original) +++ trunk/security/package/yast2-security.changes Thu Oct 30 15:47:53 2008 @@ -2,6 +2,8 @@ Thu Oct 30 15:39:10 CET 2008 - lslezak@suse.cz - better check enabled mail services (bnc#437363) +- do not check "consolekit" service, it's started automatically + (bnc#436797), added "boot.clock" as an optional service ------------------------------------------------------------------- Fri Oct 24 09:45:10 CEST 2008 - lslezak@suse.cz Modified: trunk/security/src/Security.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/security/src/Security.ycp?rev=52747&r1=52746&r2=52747&view=diff ============================================================================== --- trunk/security/src/Security.ycp (original) +++ trunk/security/src/Security.ycp Thu Oct 30 15:47:53 2008 @@ -22,10 +22,10 @@ // services to check - these must be running // meaning [ [ || ] && && ] -global const list<list<string> > mandatory_services = [["ntp"], ["syslog"], ["auditd"], ["random"], ["consolekit"], ["kbd"], ["cron"], ["postfix", "sendmail"]]; +global const list<list<string> > mandatory_services = [["ntp"], ["syslog"], ["auditd"], ["random"], ["kbd"], ["cron"], ["postfix", "sendmail"]]; // sevices to check - these can be ignored (if they are running it's OK) global const list<string> optional_services = [ - "acpid", "dbus", "ealysyslog", "fbset", "framebufferset", "isdn", "microcode.ctl", "random", + "acpid", "boot.clock", "dbus", "ealysyslog", "fbset", "framebufferset", "isdn", "microcode.ctl", "random", "consolekit", "haldaemon", "network", "syslog", "auditd", "splash_early", "alsasound", "irq_balancer", "kbd", "powersaved", "splash", "sshd", "earlyxdm", "hotkey-setup", "atd", "nscd", "smpppd", "xend", "autofs", "libvirtd", "sendmail", "postfix", "xendomains", "cron", "ddclient", @@ -42,7 +42,7 @@ list<list<string> > ret = []; list<string> enabled_services = Service::EnabledServices(runlevel); - y2internal("enabled_services: %1", enabled_services); + y2milestone("enabled_services: %1", enabled_services); if (enabled_services == nil) { -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
lslezak@svn.opensuse.org