7 Matching Annotations
- Sep 2024
-
www.mikeperham.com www.mikeperham.com
-
-
Your application code should not be dealing with PID files, log redirection or other low-level concerns.
-
Let your operating system handle daemons, respawning and logging while you focus on your application features and users.
-
This makes developing a modern daemon much easier. The init config file is what you use to configure logging, run as a user, and many other things you previous did in code. You tweak a few init config settings; your code focuses less on housekeeping and more on functionality.
-
Less system administration, easier debugging, simpler code, all because you leveraged the init system to do the work for you!
Tags
- leverage library/tool to do something for you
- focus
- init system
- core logic
- daemons
- boilerplate
- focus on the high-level design, not on the low-level details
- keep it simple
- making it easy to do the right thing
- init system: let it handle all that
- do one thing and do it well
- focus on the main functionality
Annotators
URL
-
-
www.mikeperham.com www.mikeperham.com
- Jan 2021
-
www.devuan.org www.devuan.org
-
Init Freedom is about restoring a sane approach to PID1 that respects portability, diversity and freedom of choice.
Tags
Annotators
URL
-