<div dir="auto">Thank you.  I will make sure to use a patch in the future.<br><br><div class="gmail_extra" dir="auto"><br><div class="gmail_quote">On Jan 12, 2019 7:41 AM, "Dmitry Bogatov" <<a href="mailto:KAction@debian.org">KAction@debian.org</a>> wrote:<br type="attribution"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
[ Please, next time attach patch, not whole file. Much more convenient<br>
  for review ]<br>
<br>
[2019-01-10 10:54] Dolphin Oracle <<a href="mailto:dolphinoracle@gmail.com" target="_blank" rel="noreferrer">dolphinoracle@gmail.com</a>><div class="quoted-text"><br>
> the buster version of sysvinit initscripts still mounts the with /run/shm<br>
> as the mount point for the tmpfs and /dev/shm as a symlink.<br>
><br>
> just adding on to the discussion...the situation actually prevents running<br>
> certain flatpak applications.<br>
> <br>
> modifying mount-functions.sh per the attached will reverse the situation,<br>
<br></div>
Works fine to me, I intend to accept it. Dear co-maintainers,<br>
any objections?<div class="quoted-text"><br>
<br>
> although there is still some migration code in there that strictly speaking<br>
> isn't necessary.<br>
<br></div>
Further patches are welcome. Just remember, that not only fresh installs<br>
must work fine, but also upgrade from stable must be smooth and painless.<br>
<br>
Here is patch for convenience of other developers:<br>
<br>
diff --git a/debian/src/initscripts/lib/init/mount-functions.sh b/debian/src/initscripts/lib/init/mount-functions.sh<br>
index 7511761c..98f53a86 100644<br>
--- a/debian/src/initscripts/lib/init/mount-functions.sh<br>
+++ b/debian/src/initscripts/lib/init/mount-functions.sh<br>
@@ -436,7 +436,7 @@ post_mountall ()<br>
        # directory.  The migration logic will then take care of the<br>
        # rest.  Note that it will take a second boot to fully<br>
        # migrate; it should only ever be needed on broken systems.<br>
-       RAMSHM_ON_DEV_SHM="no"<br>
+       RAMSHM_ON_DEV_SHM="yes"<br>
        if read_fstab_entry "/dev/shm"; then<br>
            RAMSHM_ON_DEV_SHM="yes"<br>
        fi<br>
@@ -559,8 +559,8 @@ mount_shm ()<br>
 {<br>
        MNTMODE="$1"<br>
<br>
-       RAMSHM_ON_DEV_SHM="no"<br>
-       SHMDIR="/run/shm"<br>
+       RAMSHM_ON_DEV_SHM="yes"<br>
+       SHMDIR="/dev/shm"<br>
        if read_fstab_entry "/dev/shm"; then<br>
                if [ "$MNTMODE" = "mount_noupdate" ]; then<br>
                        log_warning_msg "Warning: fstab entry for /dev/shm; should probably be for /run/shm unless working around a bug in the Oracle database"<br>
@@ -706,13 +706,3 @@ is_fastboot_active() {<br>
        done<br>
        return 1<br>
 }<br>
</blockquote></div><br></div></div>