Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add a status function to proftpd service file #604

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

deargle
Copy link
Contributor

@deargle deargle commented Jul 26, 2023

Without it, chef wouldn't actually start the service, concluding for some reason I haven't quite pinned down yet that the service was already running. Perhaps I didn't notice because the service would come up on reboot due to enable working (I think).

An alternative would be to bypass chef's checks and do a chef execute do command service start, but I think this is cleaner?

The matching pattern for pgrep is ^proftpd is because the server shows up as proftpd: (accepting connections) The matching against the full line(-f) in combination with ^ is needed because otherwise pgrep also matches against /etc/init.d/proftpd, which maybe is why chef was failing in the first place?

this might be affecting other metasploitable services...

Without it, chef wouldn't actually start the service, concluding
for some reason I haven't quite pinned down yet that the service was already
running.

An alternative would be to bypass chef's checks and do a chef `execute do command service start`,
but I think this is cleaner?

The matching pattern for pgrep is `^proftpd` is because the server shows up as `proftpd: (accepting connections)`

The matching against the full line in combination with `^` is needed because otherwise pgrep also matches against `/etc/init.d/proftpd`,
which maybe is why chef was failing in the first place?

this might be affecting other metasploitable services...
@deargle
Copy link
Contributor Author

deargle commented Jul 26, 2023

sorry, wait on this. it's still not fixed. Still debugging.

@deargle deargle marked this pull request as draft July 26, 2023 04:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants