]> git.proxmox.com Git - pve-cluster.git/commitdiff
set ENV{HOME} to avoid ssh-copy-id errors
authorDietmar Maurer <dietmar@proxmox.com>
Mon, 24 Sep 2012 04:04:20 +0000 (06:04 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Mon, 24 Sep 2012 04:06:48 +0000 (06:06 +0200)
Makefile
data/PVE/pvecm

index d376328c9fda73ccb67dc75829b03ca6611497c8..ca059db61b341686c92ed8c58130a99f94562b6e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-RELEASE=2.1
+RELEASE=2.2
 
 PACKAGE=pve-cluster
 PKGVER=1.0
index 6a04990e296a9de4e11dac0afc75725a21a658df..bb7e2c892fdb20d50a0cd34f2636b430d5f052b4 100755 (executable)
@@ -15,6 +15,8 @@ use PVE::CLIHandler;
 use base qw(PVE::CLIHandler);
 
 $ENV{'PATH'} = '/sbin:/bin:/usr/sbin:/usr/bin';
+$ENV{LC_ALL} = 'C';
+$ENV{HOME} = '/root'; # for ssh-copy-id
 
 die "please run as root\n" if $> != 0;