Bug 847720

Summary: systemctl returns wrong exit codes in chroot environment
Product: [Fedora] Fedora Reporter: Sandro Mathys <sandro>
Component: systemdAssignee: Judy Wathen <judy.wathen>
Status: CLOSED ERRATA QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 17CC: alonbl, johannbg, lnykryn, metherid, msekleta, notting, plautrba, saalwaechter, systemd-maint, vpavlin
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2012-12-20 16:08:49 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
Change in src/systemctl/systemctl.c to change non-negative return codes for chrooted file system commands to 0. none

Description Sandro Mathys 2012-08-13 10:57:42 UTC
Description of problem:
Running systemctl in chroot shows some strange behavior.

start/stop/is-active, etc. return "Running in chroot, ignoring request." and exit code 0, which is obviously the sensible thing to do and completely understandable.

But running is-enabled/enable/disable always return exit code 1, even if the task was successfully completed. Also, is-enabled does not return the usual feedback (static/enabled/disabled/etc), while enable and disable do (ln -s .../ rm ...)

Being able to run systemctl for those basic tasks in chroot is crucial for at least two use cases:
- Post install instructions (%post in anaconda)
- Setting up a NFS rootfs

Also, puppet does (in this order) is-active, is-enabled, enable if a service is set to enable => true. Again, running puppet in chroot can be useful with a NFS rootfs, as long as ensure => running is not set.

Version-Release number of selected component (if applicable):
systemd-44-17.fc17.x86_64

Example taken in chroot environment:

[root@tiphares /]# systemctl is-active nslcd.service
Running in chroot, ignoring request.
[root@tiphares /]# echo $?
0
[root@tiphares /]# systemctl is-enabled nslcd.service
[root@tiphares /]# echo $?
1
[root@tiphares /]# systemctl enable nslcd.service
[root@tiphares /]# echo $?
1
[root@tiphares /]# systemctl disable nslcd.service
rm '/etc/systemd/system/multi-user.target.wants/nslcd.service'
[root@tiphares /]# echo $?
1
[root@tiphares /]# systemctl is-enabled nslcd.service
[root@tiphares /]# echo $?
1
[root@tiphares /]# systemctl enable nslcd.service
ln -s '/etc/systemd/system/nslcd.service' '/etc/systemd/system/multi-user.target.wants/nslcd.service'
[root@tiphares /]# echo $?
1

Comment 1 Judy Wathen 2012-10-04 03:55:58 UTC
Created attachment 621306 [details]
Change in src/systemctl/systemctl.c to change non-negative return codes for chrooted file system commands to 0.

Comments in other parts of the code indicate that the numeric value of the number of symlinks that should be processed is useful.  Perhaps this number could be recorded in a message or in debugging output.

Comment 2 Lennart Poettering 2012-10-20 23:09:41 UTC
Fixed in git. Soon F18.

Comment 3 Fedora Update System 2012-10-23 01:03:41 UTC
systemd-195-1.fc18 has been submitted as an update for Fedora 18.
https://admin.fedoraproject.org/updates/systemd-195-1.fc18

Comment 4 Fedora Update System 2012-10-23 06:46:58 UTC
Package systemd-195-1.fc18:
* should fix your issue,
* was pushed to the Fedora 18 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=updates-testing systemd-195-1.fc18'
as soon as you are able to, then reboot.
Please go to the following url:
https://admin.fedoraproject.org/updates/FEDORA-2012-16709/systemd-195-1.fc18
then log in and leave karma (feedback).

Comment 5 Fedora Update System 2012-10-26 19:36:33 UTC
Package systemd-195-2.fc18:
* should fix your issue,
* was pushed to the Fedora 18 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=updates-testing systemd-195-2.fc18'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/FEDORA-2012-16709/systemd-195-2.fc18
then log in and leave karma (feedback).

Comment 6 Fedora Update System 2012-12-20 16:08:52 UTC
systemd-195-2.fc18 has been pushed to the Fedora 18 stable repository.  If problems still persist, please make note of it in this bug report.