mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 19:00:15 +00:00
'sudo mktemp' creates file with 0600 mode, which means we need root to read it.
This commit is contained in:
parent
13e10cfe35
commit
a52e53d123
1 changed files with 1 additions and 1 deletions
|
@ -570,7 +570,7 @@ installDependentPackages(){
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ "$FAILED" -gt 0 ]; then
|
if [ "$FAILED" -gt 0 ]; then
|
||||||
cat "${APTLOGFILE}"
|
$SUDO cat "${APTLOGFILE}"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue