You are maintaining a script that updates system packages and restarts a critical service afterward, but only if the update succeeds. Which line of code correctly implements this behavior?
yum update -y || service httpd restart
yum update -y && service httpd restart
yum update -y & service httpd restart
yum update -y ; service httpd restart