Bug 694454

Summary: Providing native systemd file for upcoming F15 Feature Systemd
Product: [Fedora] Fedora Reporter: Jóhann B. Guðmundsson <johannbg>
Component: ypbindAssignee: Honza Horak <hhorak>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: rawhideCC: daniel.christopher.spain, hhorak, kklic, lpoetter
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: 2011-06-07 08:50:41 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 713562    
Attachments:
Description Flags
Native systemd service file for ypbind
none
Native systemd service file for ypbind none

Description Jóhann B. Guðmundsson 2011-04-07 12:42:04 UTC
Created attachment 490532 [details]
Native systemd service file for ypbind

Description of problem:

The attached file is a native systemd file for upcoming F15 Feature [1]

Please read [2] on how to packaging and installing systemd Service files.

To learn more about Systemd daemon see [3].

To view old SysV with the new Systemd site by site see for your component see [4]

If you have any question dont hesitate to ask them on this bug report.

1.http://fedoraproject.org/wiki/Features/systemd

2.https://fedoraproject.org/wiki/Systemd_Packaging_Draft

3.http://0pointer.de/public/systemd-man/daemon.html

4.https://fedoraproject.org/wiki/User:Johannbg/QA/Systemd/compatability 


Version-Release number of selected component (if applicable):


How reproducible:


Steps to Reproduce:
1.
2.
3.
  
Actual results:


Expected results:


Additional info:

Comment 1 Honza Horak 2011-04-14 14:40:46 UTC
Created attachment 492134 [details]
Native systemd service file for ypbind

This is a new systemd service file for ypbind, which works together with scripts ypbind-pre-setdomain and ypbind-post-waitbind. 

There is a complete build in Rawhide to test: http://koji.fedoraproject.org/koji/buildinfo?buildID=238998

Comment 2 Bill Nottingham 2011-04-26 17:35:29 UTC
Moving systemd service RFEs to rawhide.

At this point, it is not appropriate in the Fedora 15 cycle to add these. Furthermore, at this point, we are still finalizing the packaging guidelines to handle SysV -> systemd upgrades.

We therefore request:
- wait until there are packaging guidelines (this will be announced on the devel list). This ensures that upgrades will work smoothly and we/you won't have to do multiple sets of changes.
- work on these sorts of changes for Fedora 16 where necessary, not Fedora 15, as we're trying to fix things for release.
- do *not* change a service from SysV to systemd in an existing release (such as Fedora 15), as this is the sort of behavior change that goes against our update policy, documented as https://fedoraproject.org/wiki/Updates_Policy

Comment 3 kwyjibo 2011-06-06 15:50:15 UTC
This latest service file fails on systems with selinux disabled.

The setsebool command returns a 1 if selinux is disabled which creates a failed start of the service.

Comment 4 Jóhann B. Guðmundsson 2011-06-06 18:00:50 UTC
Does adding "-" to the ExecStartPre= line fix the problem as in..

[Unit]
Description=The ypbind daemon which binds NIS/YP clients to NIS domain
After=syslog.target network.target rpcbind.service

[Service]
EnvironmentFile=-/etc/sysconfig/network
EnvironmentFile=-/etc/sysconfig/ypbind
ExecStartPre=-/usr/lib/ypbind/ypbind-pre-setdomain ; /usr/sbin/setsebool allow_ypbind=1 
ExecStart=/usr/sbin/ypbind -f $OTHER_YPBIND_OPTS
ExecStopPost=/usr/sbin/setsebool allow_ypbind=0 ; /usr/lib/ypbind/ypbind-post-waitbind

[Install]
WantedBy=multi-user.target

Comment 5 Honza Horak 2011-06-07 08:50:41 UTC
(In reply to comment #3)
> This latest service file fails on systems with selinux disabled.

Thanks for the notice. The following change fixes the failure.

-ExecStartPre=/usr/lib/ypbind/ypbind-pre-setdomain ; /usr/sbin/setsebool allow_ypbind=1 
+ExecStartPre=-/usr/lib/ypbind/ypbind-pre-setdomain
+ExecStartPre=-/usr/sbin/setsebool allow_ypbind=1

A new build with this fix is available here:
http://koji.fedoraproject.org/koji/buildinfo?buildID=246603

Since this bug has been moved to Rawhide I'm closing this for now. Feel free to re-open it if needed.