Public bug reported:

The bacula-fd init script has the following

create_var_run_dir()
{
        if [ ! -d /var/run/bacula/ ]; then
                mkdir -p 0755 /var/run/bacula/
                chown bacula:daemon /var/run/bacula/
        fi
}

which creates the directory 0755 at the root. I believe the script is
suppose to read

create_var_run_dir()
{
        if [ ! -d /var/run/bacula/ ]; then
                mkdir -p -m 0755 /var/run/bacula/
                chown bacula:daemon /var/run/bacula/
        fi
}

** Affects: bacula (Ubuntu)
     Importance: Undecided
         Status: Unconfirmed

-- 
extraneous directory created by init script
https://launchpad.net/bugs/65122

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to