Vinay Shukla
Vinay Shukla

Reputation: 1844

Which service monitors the events like (reset,halt,power off) and in turn executes runlevel 6,0 or 3

When I issue power off to a device, ideally the kernel should get this event and then runlevel 0 should get executed.

As of now the hardware turns off but the runlevel 0 is not executed.

When i manually executed the script

/etc/rc.d/rc

and hardcoded the runlevel value to 0 the script works fine and the system is halted.

Upvotes: 1

Views: 45

Answers (2)

Vinay Shukla
Vinay Shukla

Reputation: 1844

Actually the changing of the run-level is done by the kernel modules the issue in my case was the binary that was responsible for issuing this reset was not packaged as it was missing in our package mapping list

Upvotes: 0

Sundeep471
Sundeep471

Reputation: 1591

All the services of halt,reboot are present in /etc/init.d directory

your runlevel specific services are present in /etc/rc.d/ directory

rc.d directory convention was quite old

Upvotes: 1

Related Questions