Codebase list openrc / 9314ac6
migrate-to-run: fix test for successful migration This script originally tested the file system type for the source location of the data we were migrating to determine if the migration was complete. Now we test the destination, and if the softlevel file is there the migration was successful. Reported-by: Piotr Karbowski <piotr.karbowski@gmail.com> William Hubbs 11 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
33
44 . "@LIBEXECDIR@/sh/functions.sh"
55
6 if ! mountinfo -q -f tmpfs "@LIBEXECDIR@/init.d"; then
6 if [ -e /run/openrc/softlevel ]; then
77 einfo "The OpenRC dependency data has already been migrated."
88 exit 0
99 fi