oblibs
0.3.1.0Nearing the End of Breaking Changes: This release marks a major step towards the end of planned breaking changes for version 66. Version 0.7.0.0
introduced stability in the directory hierarchy of the 66 ecosystem, and version 0.8.0.0
solidified the stability of frontend file keys. While the implementation of events may happen in version 0.9.0.0
, this can potentially occur without breaking existing 66 components(see roadmap).
Introduction of Snapshot Command: A new snapshot command has been added, offering a comprehensive backup solution for the 66 ecosystem. This feature guarantees that you can restore the exact state of the ecosystem before any changes. It also enables the replication of ecosystems across different hosts to maintain consistent states and behaviors. Importantly, using snapshots does not alter the state of running services.
Transparent Upgrade Process: The release includes a new upgrade process that is fully transparent to the user. Whether a migration involves changes to the resolve file or other components, 66 automatically detects version upgrades and makes the necessary adjustments, ensuring continuity with the new version. This process does not affect the state of running services, and an automatic snapshot is created during the migration to facilitate easy recovery if needed.
StdIn
, StdOut
, StdErr
) have been added to control the behavior of standard input, output, and error, respectively.66 snapshot
command allows users to create, remove, list, and restore snapshots, providing enhanced backup and reliability management.@
prefix in key names has been removed, and key names now start with a capital letter. Additionally, the -
character has been removed from composite names and also replaced by a capital letter. 66 will automatically migrate the frontend files present on your system, but this will only apply to active services(i.e., those listed when running 66 tree status
with the field contents
). You may need to manually translate your own frontend files.To help with this, use the script below by running:
./migration_service.sh /path/to/my/<FrontendFile>
#!/bin/sh
service="${1}"
sed -e "s:\[main\]:\[Main\]:g" \
-e "s:@type:Type:g" \
-e "s:@description:Description:g" \
-e "s:@version:Version:g" \
-e "s:@depends:Depends:g" \
-e "s:@requiredby:RequiredBy:g" \
-e "s:@optsdepends:OptsDepends:g" \
-e "s:@options:Options:g" \
-e "s:@flags:Flags:g" \
-e "s:@notify:Notify:g" \
-e "s:@user:User:g" \
-e "s:@timeout-kill:TimeoutStart:g" \
-e "s:@timeout-up:TimeoutStart:g" \
-e "s:@timeout-finish:TimeoutStop:g" \
-e "s:@timeout-down:TimeoutStop:g" \
-e "s:@maxdeath:MaxDeath:g" \
-e "s:@down-signal:DownSignal:g" \
-e "s:@hiercopy:CopyFrom:g" \
-e "s:@intree:InTree:g" \
-e "s:\[start\]:\[Start\]:g" \
-e "s:@build:Build:g" \
-e "s:@runas:RunAs:g" \
-e "s:@execute:Execute:g" \
-e "s:\[stop\]:\[Stop\]:g" \
-e "s:\[logger\]:\[Logger\]:g" \
-e "s:@destination:Destination:g" \
-e "s:@backup:Backup:g" \
-e "s:@maxsize:MaxSize:g" \
-e "s:@timestamp:Timestamp:g" \
-e "s:\[environment\]:\[Environment\]:g" \
-e "s:\[regex\]:\[Regex\]:g" \
-e "s:@configure:Configure:g" \
-e "s:@directories:Directories:g" \
-e "s:@files:Files:g" \
-e "s:@infiles:InFiles:g" \
-i ${service}
See Rosetta Stone for the list of keyword name changes.
66 status
command now provides an overview of all system services, organized by tree, when no specific service is specified.@I
, 66 now recognizes seven new identifiers to facilitate the creation of more generic frontend files.configure
script called MOD_ENVIRONMENT_ADMDIR=
and MOD_ENVIRONMENT_USERDIR=
.66 remove
command is designed to always succeed, ensuring that no service becomes impossible to remove.The deprecated key @shebang
has been completely removed and is no longer recognized by the parser.
The Destination
key (previously @destination
) in the [Logger]
section is now deprecated and replaced by new StdIn
, StdOut
, and StdErr
keywords. For compatibility, the parser will automatically handle the conversion.
Removal of Deprecated Options:
disable
command: -F
, -R
options are removed.parse
command: -F
, -C,
-c,
-m` options are removed.stop
command: -X
, -K
options are removed.66 tree status
command now only displays services associated with a specific tree.-l
option at execl-envfile program.Bugs fix:
Adapt to oblibs
0.3.0.1`
Bugs fix:
remove
subcommand invocation.enable
process time if it were already enabled.Behavior changes:
-s
and -c
options to the configure
subcommand are now mutually exclusive.scandir reload
subcommand was renamed to scandir reconfigure
. The old subcommand invocation still work.New features:
scandir start
command invocation.
Although this can be changed at compile time by passing the --with-sysadmin-environment=DIR
, --with-user-environment=DIR
for root and regular user respectivelyEnhancement:
unsupervise
process with a corrupted service. This allows to avoid to be stuck at remove
command invocation for a corrupted service or a corrupted state service within module.stop
process if the service is already unsupervised.unsupervise
process by sending only one signal for all services to the fdholder
service.Bugs fix:
Adapt to oblibs
0.3.0.0
Bugs fix:
-s
and -c
options at configure command.-s
option for edition at configure command.Complete review of the execl-envfile program. Adapting it to the new lexer and environ familly functions make it faster and easier to debug and use less HEAP memory.
Remove deprecated env key of the @options
field.
Hot fix:
Bug fix:
skalibs
2.14.1.0execline
2.9.4.0s6
2.12.0.3oblibs
0.2.1.0This release marks a significant rewrite of 66
, introducing a new UI and serving as a comprehensive service supervision suite and independent service manager.
Primarily, expect no compatibility with previous versions due to:
s6-rc
support. 66
is now a complete independent service management based on s6 for init and service supervision.Sb
depends on service Sa
and Sa
is within TreeB
while service Sb
is within TreeA
, and TreeB
depends on TreeA
, launching TreeA
will start Sa
even if TreeB
isn't started first. When TreeB
is executed, Sb
will find Sa
already started and commence directly.For UI changes, frontend file convertion and clean of the 66
architecture, a Rosetta stone is available.
@requiredby
: Specifies which service is required-by another service. For example, if service Sa declares service Sb as required-by Sa's dependency, Sb won't start until Sa does. This allows building complex graph structures without modifying every frontend file of each service.@earlier
: Declares any service as an earlier one, starting as soon as the scandir is running, similar to tty12. This field is mandatory for services intended to start earlier.@intree
: Specifies the tree to use at enable/start time.The following field has been removed:
@extdepends
: No longer necessary as services can depend on any service regardless of the tree used.Frontend files for regular account must be now localized at /usr/share/66/service/user
, /etc/66/service/user
or ${HOME}/.66/service
.
@options
:
pipeline
: This option was removed. It was only present for s6-rc
.env
: This option was removed. The simple declaration of the [environment] section is sufficient to activate the options.@shebang
: Deprecated but kept for compatibility reasons. Declare your shebang directly within the @execute
field. Refers to frontend documentation for futhers information.
@build
: Not mandatory anymore, as it will be declared 'auto' by default.
@addservices
: This options was removed from the [regex]
section.
The classic
type now accepts the fields @depends
and @requiredby
. The classic
type replaces the longrun
type.
Logger destinations for oneshot
type services can now be declared on a tmpfs directory, particularly useful during boot time.
Services can be started without being enabled first. In this case, the service won't start on the next reboot.
The bundle
and longrun
types have been removed, replaced by classic
, oneshot
, and module
types. For compatibility reasons, if your old frontend
file declares the service as a longrun
type, the parser will convert it to a classic
type automatically. No automatic conversion is made for services of type bundle
.
This section now allows reusing the same variable from the actual environment. For instance:
socket_name=!/run/dbus/system_bus_socket
cmd_args=!--system --address=unix:path=${socket_name}
PATH=/usr/local/bin:${PATH}
The order of key-value pair declaration doesn't matter:
cmd_args=!--system --address=unix:path=${socket_name}
socket_name=!/run/dbus/system_bus_socket
Variable name must be between ${}
to get it value. For instance, $var
is not replaced by its value.
Double-quote within value must be escaped with backslash \
. Refers to the updated documentation of execl-envfile for futhers information.
The module
directory structure has been completely redesigned for better intuitiveness and comprehensiveness. Expect no compatibility with the previous version; a rewrite is required if you use module
on your system.
A module
cannot contain another module
; instead, you can declare it as a dependency via @depends
or @requiredby
. These can also be specified through the configure
module
script.
Refer to the specific module page for furthers information.
Trees now react as services regarding graph dependencies. You can declare a tree
depending on or required-by others.
A default named global
tree
is provided. Services without their localization defined or users not specifying a tree
to use will be defined within that tree
.
A seed
file can be provided for automatic tree
configuration at creation time. For example, it defines depends/requiredby
dependencies of the tree
.
If a service declares a non-existing tree
, the tree
will be created automatically with a default configuration, but without any depends/requiredby
dependencies. To configure the tree
with specific requirements at creation time, provide and install seed
file with your service.
Removed flags:
- --with-system-module=DIR
- --with-sysadmin-module=DIR
- --with-user-module=DIR
Added flags:
- --with-default-tree-name=NAME
- --max-path-size=KB
- --max-service-size=KB
- --max-tree-name-size=KB
- --with-system-seed=DIR
- --with-sysadmin-seed=DIR
- --with-user-seed=DIR
The slashpackage convention was removed.
The skeleton files shudown
, reboot
, poweroff
and halt
are removed and replaced by 66 reboot
, 66 poweroff
, 66 halt
command respectively.
The code has been largely rewritten and simplified, offering more features with approximately the same number of code lines. Additionally, the code now uses less HEAP
memory, although this optimization is ongoing.
The parser was completely rewritten and heavily optimized, significantly reducing the time to parse a service(by three times).
The start process was rewritten due to the removal of s6-rc
. Oblibs
now provide general functions to build any Acyclic graph.
The code for the module part was revamped and greatly simplified.
WARNING: 66-update
is no longer compatible with 66 version under 0.5.0.0.
Adapt to skalibs 2.11.0.0
Adapt to execline 2.8.1.0
Adapt to s6 2.11.0.0
Adapt to s6-rc 0.5.2.3
Adapt to oblibs 0.1.4.0
Adapt to skalibs 2.10.0.3.
Adapt to execline 2.8.0.1.
Adapt to s6 2.10.0.3.
Adapt to s6-rc 0.5.2.2.
Bugs Fix:
Configure script: remove the slashpackage convention.
Bugs fix:
66-env:
66-inservice
Bugs fix:
66-all
command at s6-svscan control file of a regular user scandir creation.key=value
pair on multiple service configuration file.execl-envfile:
key=value
pair on multiple service configuration file.66-env:
Adapt to skalibs 2.10.0.0
Adapt to execline 2.7.0.0
Adapt to s6 2.10.0.0
Adapt to s6-rc 0.5.2.1
Adapt to oblibs 0.1.2.0
Bugs fix:
66-disable:
66-env:
66-tree:
66-all:
66-tree -U
command.66-inservice:
Environment file
field.66-update:
66-env:
66-enable:
66-parser:
66-scandir: the interface change.
/run/66/scandir/container/halt
file is created(see 66-boot for further information).catch-all
logger.skeleton file: (see 66-boot for further information).
catch-all
logger.66-scanctl: the interface change.
66-boot:
66-shutdownd:
frontend:
@flags
key is deprecated and have no effects if it defined.@options
key:!log
.[envrionment]
must be set.html documentation: documentation is now versionned.
New tool:
Bugs fix:
66-disable:
new options:
- -F: forces the service to be disabled even if it's already marked disabled. See the 66-disable
documentation page for further information.
This is a Major release, you need to update your trees with 66-update tool. If you skip from a version earlier than 0.4.0.1, the 66-update will not work. In this case, you need to reconstruct your trees manually. Downgrading to a previous version will not work either, due to the new format of the resolve inner files.
Adapt to oblibs v0.1.0.0
Pass the writing of the resolve files to a CDB
format. From that point onward the 66-update
will no longer be mandatory, even after major version release.
Adapt 66-update
to the new CDB
format where applicable.
Bugs fix:
contents
file for a module in the proper order as to avoid multiple repeated names.configure
script improvements and bugs fix.@build
is not set.The rc.init
skeleton file does not launch the ISHELL
script anymore during a crash at stage2. It's the responsability of the sysadmin to deal with this error at his convenience.
@destination
field in section [logger]
is no longer mandatory at the use of @build
with value custom
.
66-env:
key=value
pair from all files found at the configuration directory.
new options:All key=value
pairs from init.conf
skeleton file can be now passed to the kernel command line. Also, variables from init.conf
are now passed to the rc.init
skeleton file as arguments.
@version
field is now mandatory.
The version symlink of the configuration file points now to the configuration directory instead of the configuration file. This allows overwriting a same key=value
with the writing of an extra configuration file instead of changing the upstream file.
66-in{resolve,state}: field Real logger name
name is renamed Real_logger_name
.
66-enable:
@build
is no longer mandatory even for [stop]
section.This is a Major release, you need to update your trees with 66-update tool.
new extra-tools:
Documentation is now written in markdown format. Lowdown software it necessary to build in html and manpages format.
Bugs fix:
module
.Configuration service files: These files is now automatically versioned in function of the field @version
declared on the frontend service file e.g. /etc/66/conf/<service>/version/<file>
. A symlink called version
is created or updated at /etc/66/conf/<service>/version
. This symlink point to the configuration file currently in use.
Also, you can now write and save your own configuration file for a service inside the configuration service directory. All files found on that directory will be parsed and exported to the environment of the service at start time. The parse process is made on alphabetical order.
@hiercopy
field accept now relative path.
@build
field is no longer mandatory. If it not set, auto
is the default.
@version
field must be in the form digit.digit.digit e.g. 0.10.2.
module
service type:
@addservices
field at [regex]
section.service@/
sub-directory where other type go to service/
sub-directory. .configure/
is now named configure
./etc/66/conf/<module>/<version>/<service>/<service_version>/file
. This allows to have multiple module using a same service with a specific configuration for each service.66-inresolve: add field Real_exec_run,Real_exec_finish for the service and logger associated to display the exact contain of the run/up
and finish/down
files respectively.
66-enable: The absolute path of the frontend service can also be set but must contain the primary path of the path define at compile time by --with-system-service or --with-sysadm-service or --with-user-service e.g. /etc/66/service/lamp/httpd
.
66-env:
Fix check and installation of user configuration file directory.
Add missing 66-inresovle and 66-instate* documentation.
Fix @optsdepends
and @extdepends
behavior:
These two fields now respect correctly the start order of the service's dependencies.
66-inservice change:
The field Optional dependencies
and External dependencies
displays now the name of the tree where the service is currently enabled after the :
colon mark if any:
External dependencies : dbus-session@obarun:base gvfsd:desktop
Optional dependencies : picom@obarun:desktop
This is a Major release, you need to update your trees with 66-update tool.
Bugs fix
skalibs dependency bumped to 2.9.2.1
exeline dependency bumped to 2.6.0.1
s6 dependency bumped to 2.9.1.0
s6-rc dependency bumped to 0.5.1.2
oblibs dependency bumped to 0.0.6.0
Add -z to all tools to enable colorization:
66-start and 66-stop exit 0 instead of 110 if the service is not enabled.
Frontend service file change:
The field @type
accepts a new kind of service called module. A module can be considered as an instantiated service. It works the same way as a service frontend file but allows to configure a set of different kind of services before executing the enable process. Also, the set of the services can be configured with the conjunction of a script called configure
which can be written on any language.
module also comes with a new section named [regex]
which contains the following field:
@configure
@directories
@files
@infiles
Please see the frontend documentation for futher information.
Allow commenting out of a service inside @contents, @depends, @optdepends, @extdepends field with the #
character. The service name must begin with a #
character without any space between the #
and the name of the service, so it can be ignored.
@depends = ( foo #bar fooB )
Add @version
field:
This field is currently not mandatory to allow time to adapt the existing service files on your system, but it will be mandatory in a future release.
Comments in the [environment]
section is now kept at parsing process and written to the final service configuration file. This is useful to explain the use of a variable without the need to look on the executable script.
66-in{service,tree} display now up,down or unintialized on status and graph dependencies field for oneshot, bundle, module services. This allows us to know if e.g an oneshot service is currently up or down.
66-enable now accepts the new option -m. This option reacts the same as the -c option for new key=value pair but overwrites the change of the admin on existing key=value pair. A key=value pair which doesn't exist on the frontend file remains untouched.
Oneshot now accepts the option log at the field @options
. This allows a oneshot to have its own logger. As any other service the log file can be seen with the 66-inservice tool. The log destination can be controlled by the @destination
field at the [logger]
section. Default is set at compile time by the --with-system-log or --with-user-log flag.
New debug tools:
resolve
file.state
file.--disable-s6-log-notification was added on the configure script to disable logger's readiness notification. By default it use the file descriptor number 3.
--with-s6-log-timestamp flag was added on the configure script to set the default output date format for a logger at the compile time. See configure --help
command.
--with-system-module, --with-sysadmin-module, --with-user-module flags was added on the configure script to set the default system, sysadmin and user module directory respectively.
--with-system-script, --with-user-script flags was added on the configure script to set the default system and user script directory respectively.
Bugs fix
66-tree -S options: if after_tree and tree have the same name, tree is considered as the very first tree to start.
66-unmountall: do not umount SS_LIVE
Add SIGPWR control file at creation of .s6-svscan directory
Bugs Fix: Bad memory allocation
66-tree: add -S option which allows to order the start tree process even after it creation.
Bugs fix: Bad memory allocation.
Enable again RB_DISABLE_CAD but don't crash if its not available and warn user
Add @optsdepends and @extdepends field at [main] section:
@optsdepends can be considere as: "enable one on this service or none"
@extdepends can be considere as: "enable the service if it is not already declared on a tree"
66-in{tree,service}:
in case of empty value the tools return None
add -n option: this avoids to display the name of the field.
add field at 66-intree:
start: displays the list of tree(s) started before
allowed: displays a list of allowed user to use the tree
symlinks: displays the target of tree's symlinks
add field at 66-inservice:
optsdepends: displays the service's optional dependencies
extdepends: displays the service's external dependencies
66-shutdown skeleton: be safier and check if options are past
New tool:
Fix bad annoucement at 66-svctl
Warn in case of bad key at parenthesis parsing process
Bugs fix: bad allocation memory
Makefile: remove creation of empty directories. 66-tree will check all directories and create it if it missing.
Adapt to oblibs 0.0.4.0
Remove RB_DISABLE_CAD at 66-boot by default and allow to enable it with -c option. Starting on virtual system like lxc crash with this option. Well be safe on every case.
Use of new function log_? familly from oblibs:
standardization of the exit code
standardization of the verbosity output
allow verbosity to 4 to display debug message
Doc typo fix
Adapt to skalibs 2.9.1.0
Remove insta_? deprecated function
Typo fix at html documentation
Fix 66-intree without options
Bugs fix: Always check the existing of the 66 heart directories
66-info is now deprecated and splitted into two differents API:
66-intree give informations about tree
66-inservice give informations about services
Bugs fix.
A synchronization is now made on reboot even with force option.
The field @name has no effects except for instantiated service but can be omitted. The name of the frontend file is took as name. In case of instantiated service, the field @name must contain the complete name of the frontend service file -- Refer to the frontend documentation page.
New skeleton file: rc.shutdown.final. This skeleton file will be run at the very end of the shutdown procedure, after all processes have been killed and all filesystems have been unmounted, just before the system is rebooted or the power turned off. This script normally remains empty.
Extra tools has removed and provided as an independent programs at ttps://framagit.org/Obarun/66-tools.git except for 66-echo and 66-unmountall program which are a dependent part of 66.
The account to run the s6-log program at the associate service logger can be set at compilation time by the --with-s6-log-user=USER options. The default is root. Obviously, the @runas field at the [logger] section overwritte it. This options set the account to run the uncaught-logs too. Also, this option can be overwritten with the '-l' option at 66-boot invocation and the '-L' option at 66-scandir invocation.
In 0.2.0.4
Bugs fix on memory allocation
Respect policies decision of user:
Add -d feature to 66-scandir
Fix the written of user configuration file
Fix oneshot and bundle status check
Add -l features to 66-tree, rewrite tree_unsupervise function
New tools:
66-boot.
66-scanctl.
66-shutdown.
66-shutdownd.
66-hpr.
66-env.
66-parser.
66-which.
66-echo.
66-unmountall.
execl-subuidgid.
New @key field and change on frontend file:
[Logger] section accept a @depends field, @timestamp accept none as value, readiness notification is a default.
@hiercopy in [main] allow to copy any file or directory coming from the directory of the service.
66-envfile is now deprecated, use execl-envfile in replacement.
66-enable: add -F, -c, -C features.
66-svctl is now asynchrone to launch services.
Man pages are available.
Environment variables limitation: maximum 100 files by directory, each file cannot contain more than 4096 bytes or 50 variables.
Syntax to unexport variable with execl-envfile change: the exclamation mark '!' need to be placed at begin of value instead of key.
Bugs fix
Bugs fix
Add 66-getenv,66-writenv and 66-gnwenv extra-tools
Logger for nested tree at scandir creation time is disabled.
Pass graph function to new ss_resolve_graph_? function.
Split resolve file and state flags.
Add ss_state_? function.
Really unsupervise rc service, add rc_manage, rc_unsupervise function.
Fix -U option for 66-tree.
Fix 66-info, add -c option.
In 0.0.2.1
Bugs fix.
Add 66-tree -U options to unsupervise a tree from a scandir.
Rewrite 66-info to provide color and more informations.
Empty database cannot be initialized.
Respect /etc/66/sysadmin/service even for user.