2018-01-12 14:10:42 -06:00
|
|
|
Features Scheduled for Removal
|
|
|
|
==============================
|
2015-04-22 17:42:38 -05:00
|
|
|
|
2011-01-17 22:31:11 +00:00
|
|
|
The following is a list of files and features that are going to be removed in
|
|
|
|
the source tree. Every entry should contain what exactly is going away, why it
|
|
|
|
is happening, and who is going to be doing the work. When the feature is
|
|
|
|
removed, it should also be removed from this file.
|
|
|
|
|
2018-01-12 14:10:42 -06:00
|
|
|
# Service pause action
|
2011-01-18 01:41:29 +00:00
|
|
|
|
2014-01-23 11:08:35 -06:00
|
|
|
When: 1.0
|
2011-01-18 01:41:29 +00:00
|
|
|
|
2015-04-22 17:42:38 -05:00
|
|
|
Why: The same affect can be obtained with the --nodeps option to stop.
|
2011-01-18 01:41:29 +00:00
|
|
|
|
2011-01-18 01:48:53 +00:00
|
|
|
Who:
|
2011-01-18 01:41:29 +00:00
|
|
|
|
2018-01-12 14:10:42 -06:00
|
|
|
# start-stop-daemon options --startas, --chuid , --oknodo
|
2011-01-18 01:41:29 +00:00
|
|
|
|
2014-01-23 11:08:35 -06:00
|
|
|
When: 1.0
|
2011-01-18 01:41:29 +00:00
|
|
|
|
|
|
|
Why: Obsolete or replaced by other options.
|
|
|
|
|
2015-04-22 17:42:38 -05:00
|
|
|
* --startas => use --name or --exec
|
|
|
|
* --chuid => use --user
|
|
|
|
* --oknodo => ignore return code instead
|
2011-01-18 01:41:29 +00:00
|
|
|
|
2015-04-22 17:42:38 -05:00
|
|
|
Who:
|
2014-01-23 11:08:35 -06:00
|
|
|
|
2018-01-12 14:10:42 -06:00
|
|
|
# runscript and rc symbolic links
|
2014-01-23 11:08:35 -06:00
|
|
|
|
|
|
|
When: 1.0
|
|
|
|
|
|
|
|
Why: Deprecated in favor of openrc-run and openrc due to naming
|
|
|
|
conflicts with other software.
|
|
|
|
|
|
|
|
Who:
|
|
|
|
|
2018-01-12 14:10:42 -06:00
|
|
|
# support for the opts variable in service scripts
|
2014-07-01 07:14:31 -05:00
|
|
|
|
|
|
|
When: 1.0
|
|
|
|
|
2015-12-03 22:03:13 +01:00
|
|
|
Why: Deprecated in favor of extra_commands, extra_started_commands
|
2014-07-01 07:14:31 -05:00
|
|
|
and extra_stopped_commands.
|
|
|
|
|
|
|
|
Who:
|
|
|
|
|
2018-01-12 14:10:42 -06:00
|
|
|
# support for local_start and local_stop
|
2014-07-10 09:04:04 -05:00
|
|
|
|
|
|
|
When: 1.0
|
|
|
|
|
2015-12-03 22:03:13 +01:00
|
|
|
Why: Deprecated in favor of executable scripts in @SYSCONFDIR@/local.d
|
2014-07-10 09:04:04 -05:00
|
|
|
|
|
|
|
Who:
|
|
|
|
|
2018-01-12 14:10:42 -06:00
|
|
|
# the mtab service script
|
2014-08-14 13:50:48 -05:00
|
|
|
|
2015-12-08 13:02:21 -06:00
|
|
|
When: force /etc/mtab to link to /proc/self/mounts in 1.0, remove
|
|
|
|
service in 2.0
|
2014-08-14 13:50:48 -05:00
|
|
|
|
|
|
|
Why: /etc/mtab should be a symbolic link to /proc/self/mounts on modern
|
|
|
|
Linux systems
|
|
|
|
|
|
|
|
Who:
|
2015-12-08 13:11:41 -06:00
|
|
|
|
2018-01-12 14:10:42 -06:00
|
|
|
# C API Functions in rc.h
|
2015-12-11 16:46:02 -06:00
|
|
|
|
|
|
|
If you have a c program that links to librc and uses functions from
|
|
|
|
there, this section will list API functions which are deprecated and
|
|
|
|
will be removed along with the reason they are being removed.
|
|
|
|
|
2018-01-12 14:10:42 -06:00
|
|
|
## rc_getline()
|
2015-12-09 17:57:20 -06:00
|
|
|
|
|
|
|
When: 1.0
|
|
|
|
|
|
|
|
Why: The getline() function was standardized in POSIX.1-2008, so it
|
|
|
|
should be available on POSIX systems.
|
|
|
|
|
|
|
|
Who:
|
|
|
|
|