Skip to content
Snippets Groups Projects
Commit 38d3aef7 authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

Welcome debian.

Some distribution do not leave an empty live directory at exit of the initramfs.
In case of existing directory, the -m option remount the live directory excluding the MS_NOEXEC flag.
parent 441052d2
No related branches found
No related tags found
No related merge requests found
Pipeline #17704 passed
......@@ -570,17 +570,22 @@ int ssexec_boot(int argc, char const *const *argv, ssexec_t *info)
split_tmpfs(fs,live) ;
r = is_mnt(fs) ;
if (!r || tmpfs)
{
if (r && tmpfs)
{
log_info("Umount: ",fs) ;
if (umount(fs) == -1) sulogin ("umount: ",fs ) ;
if (!r || tmpfs) {
if (!r) {
log_info("Mount: ",fs) ;
if (mount("tmpfs", fs, "tmpfs", MS_NODEV | MS_NOSUID, "mode=0755") == -1)
sulogin("mount: ",fs) ;
} else if (tmpfs) {
log_info("Remount: ",fs) ;
if (mount("tmpfs", fs, "tmpfs", MS_REMOUNT | MS_NODEV | MS_NOSUID, "mode=0755") == -1)
sulogin("mount: ",fs) ;
}
log_info("Mount: ",fs) ;
if (mount("tmpfs", fs, "tmpfs", MS_NODEV | MS_NOSUID, "mode=0755") == -1)
sulogin("mount: ",fs) ;
}
/** respect the path before run API*/
if (setenv("PATH", path, 1) == -1) sulogin("set initial PATH: ",path) ;
/** create scandir */
......@@ -618,6 +623,7 @@ int ssexec_boot(int argc, char const *const *argv, ssexec_t *info)
}
if (envdir) {
log_info("Prepare environment") ;
if (!environ_clean_envfile_unexport(&envmodifs,envdir))
sulogin("prepare environment from: ",envdir) ;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment