Bug 522098

Summary: Initscript for vsftpd daemon is not LSB compliant
Product: [Fedora] Fedora Reporter: Aleš Mareček <amarecek>
Component: vsftpdAssignee: Jiri Skala <jskala>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: low Docs Contact:
Priority: low    
Version: rawhideCC: aglotov, jskala, mnagy
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of:
: 533458 (view as bug list) Environment:
Last Closed: 2009-09-15 13:23:42 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: 521669, 533458    

Description Aleš Mareček 2009-09-09 13:29:47 UTC
Description of problem:
According to https://fedoraproject.org/wiki/FCNewInit/Initscripts
vsftpd init script returns 1 after second start. It is expected that vsftpd returns exit code 0.

Version-Release number of selected component (if applicable):
vsftpd-2.2.0-2.fc12

How reproducible:
always


Steps to Reproduce:
1. $ service vsftpd stop
2. $ service vsftpd start
3. $ echo $?
(prints 0)
4. $ service vsftpd start
5. $ echo $?
(prints 1)

Actual results:
Exit code 1

Expected results:
Exit code 0


Additional info:

Comment 1 Jiri Skala 2009-09-15 13:23:42 UTC
Described issue is fixed. The initscript is modified in accordance with following document:

https://fedoraproject.org/wiki/FCNewInit/Initscripts

especially possible parameters try-restart and force-reload.