mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:57:46 +00:00
Meta: Make utmp start out as an empty object instead of empty string
The reason empty string was treated as JSON null was to paper over an
issue where UTMP would start out as the empty string and presumably
cause errors when trying to parse it as JSON. This was added in
commit a409b832
.
This changes that by making UTMP start out as an empty JSON object
instead of the empty string.
This commit is contained in:
parent
18d25124bf
commit
36c3a0fac2
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ chmod 1777 mnt/tmp
|
|||
echo "done"
|
||||
|
||||
printf "creating utmp file... "
|
||||
touch mnt/var/run/utmp
|
||||
echo "{}" > mnt/var/run/utmp
|
||||
chown 0:$utmp_gid mnt/var/run/utmp
|
||||
chmod 664 mnt/var/run/utmp
|
||||
echo "done"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue