coova / coova-chilli

CoovaChilli is an open-source software access controller for captive portal hotspots.
Other
512 stars 258 forks source link

Add Status Function to CoovaChilli Init Script #581

Closed bankjirapan closed 1 month ago

bankjirapan commented 1 month ago

Description:

This commit adds a status function to the CoovaChilli init script (/etc/init.d/chilli status). The absence of this function previously caused the status command to fail. The new status function correctly checks if the CoovaChilli service is running by verifying the PID from the PID file.

Changes:

Added status function: This function checks if the PID file exists and if the process with the PID is running. Updated case statement: The status case now calls the new status function to provide accurate service status. Example:

Before the fix, running /etc/init.d/chilli status would result in an error: /etc/init.d/chilli: 129: status: not found

After the fix, running /etc/init.d/chilli status will correctly report the status of the CoovaChilli service: chilli is running (pid xxx)

sevan commented 1 month ago

Thank you.