vncserver: fix heredoc to work on CentOS

This commit is contained in:
Dmitry Maksyoma
2021-10-28 22:55:56 +13:00
parent aefbb4d143
commit 3e843eea8d

View File

@@ -562,10 +562,10 @@ sub CheckUserHasAccessToDefaultCertOnDebian {
my $certGroup = 'ssl-cert';
if (system("groups | grep -qw $certGroup") != 0) {
say <<~EOF;
Can't access TLS certificate.
Please add your user to $certGroup via 'addgroup <user> $certGroup'
EOF
say <<EOF;
Can't access TLS certificate.
Please add your user to $certGroup via 'addgroup <user> $certGroup'
EOF
exit(1);
}
}