mkimage-profiles/features.in/init/rootfs/image-scripts.d/50-var-run-fix

10 lines
243 B
Plaintext
Raw Normal View History

#!/bin/sh
# this was a bunch of dirty complaints
sed -i 's,/var/run,/run,' /{etc,lib}/tmpfiles.d/*.conf ||:
[ ! -L /var/run ] && rm -r /var/run && ln -s ../run /var/run
[ ! -L /var/lock ] && rm -r /var/lock && ln -s ../run/lock /var/lock
: