Check-in [527b45759d]
Logged in as anonymous
Overview
Comment:silence cleanvar error
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 527b45759dfbf9023bb7db3ed3c67f78c6bbce37d9a7d9c25161af107c164efd
User & Date: arcade on 2019-10-24 10:30:18.214
Other Links: manifest | tags
Context
2019-10-24
10:31
add default empty start target when it's absent, add flags to control background/foreground mode check-in: bc20f9df9f user: arcade tags: trunk
10:30
silence cleanvar error check-in: 527b45759d user: arcade tags: trunk
2019-10-23
09:40
create defaults file, mark conditions for later, remove default mrc.conf check-in: 88e0b45310 user: arcade tags: trunk
Changes
Modified init.mk from [5b6a761119] to [21f19fd804].
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
bootfs: fsck
	echo "MRC:$@> Checking whether we need /boot mounted."
	mount -vadr | grep -q ' /boot$$' && mount -r /boot || true

cleanvar: mount
	echo "MRC:$@> Cleaning 'var's."
.for dir in ${CLEANVAR_DIRS}
	-test -d ${dir} && find ${dir} -mindepth 1 -delete
.endfor
	install -m644 /dev/null /var/run/utmpx

cleartmp: mountlate
	echo "MRC:$@> Clearing tmp."; \
	find -x /tmp -mindepth 1 ! -name lost+found \
	    ! -name snapshots ! -path "./snapshots/*" \







|







21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
bootfs: fsck
	echo "MRC:$@> Checking whether we need /boot mounted."
	mount -vadr | grep -q ' /boot$$' && mount -r /boot || true

cleanvar: mount
	echo "MRC:$@> Cleaning 'var's."
.for dir in ${CLEANVAR_DIRS}
	test -d ${dir} && find ${dir} -mindepth 1 -delete || true
.endfor
	install -m644 /dev/null /var/run/utmpx

cleartmp: mountlate
	echo "MRC:$@> Clearing tmp."; \
	find -x /tmp -mindepth 1 ! -name lost+found \
	    ! -name snapshots ! -path "./snapshots/*" \