4 Commits
v0.1.8 ... luks

Author SHA1 Message Date
obarun
95e074768e stage2.tini : umount Nfs filesystem if exist 2017-10-11 09:39:33 +11:00
obarun
dbc7e4d1af NEWS : oops forget to push before tagging 2017-10-11 09:16:51 +11:00
obarun
4e1e004af7 Makefile : fix version 2017-10-11 09:16:26 +11:00
obarun
53bc1c3f84 rofs-cgroups: add -R at umount command 2017-10-11 09:15:59 +11:00
4 changed files with 13 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
# Makefile for s6-boot
VERSION = $(git describe --tags| sed 's/-.*//g;s/^v//;')
VERSION = $$(git describe --tags| sed 's/-.*//g;s/^v//;')
PKGNAME = s6-boot
BINDIR_EXECLINE = /usr/local/bin

9
NEWS
View File

@@ -1,18 +1,19 @@
Changelog for s6-boot
In 0.1.8
--------
-- add data/scripts/modules.sh : the variable MODULES at s6.conf was
- add data/scripts/modules.sh : the variable MODULES at s6.conf was
removed. Modules are now loaded by this file with the rofs-modules
oneshot service which run the scripts data/scripts/modules.sh. This
scripts read, parse and load modules founded in files
/usr/lib/modules-load.d, /run/modules-load.d, and /etc/modules-load.d
the last supersedes the previous one.
-- fix bug at rwfs-ip6tables at the shutdown process
-- add rwfs-tmpfiles services : the file founded at /usr/lib/tmpfiles.d
- fix bug at rwfs-ip6tables at the shutdown process
- add rwfs-tmpfiles services : the file founded at /usr/lib/tmpfiles.d
is now parsed and applied at boot time. Those files create sub-directories
at /run directories.
-- fix rwfs-end oneshot service
- fix rwfs-end oneshot service
In 0.1.7
--------

View File

@@ -19,4 +19,4 @@ foreground {
if { mountpoint -q /sys/fs/cgroup/${i} }
umount -R /sys/fs/cgroup/${i}
}
umount /sys/fs/cgroup
umount -R /sys/fs/cgroup

View File

@@ -26,6 +26,11 @@ foreground {
if { s6-echo -- Cleaning /tmp directory }
rm -rf /tmp/
}
foreground {
if -X { mountstats }
if { s6-echo Umount NFS filesystem }
umount -a -f -t nfs4
}
if { s6-echo -- "***************************************************************************" }
if { s6-echo -- "** Tini shutdown terminated **" }