Browse Source

provision.pl fixed venv chdir... again

tags/release-00
gashapwn 3 years ago
parent
commit
f284697cd4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      perl-script/provision.pl

+ 2
- 2
perl-script/provision.pl View File

@@ -13,7 +13,7 @@ use strict;
# Nov 2020

my $GIT_REPO = 'https://git.lain.church/gashapwn/lyadmin.git';
my ($REPO_DIR) = $GIT_REPO =~ /\/([^\/]*)\.git$/;

my $pwuid;
my $admin_un;
@@ -45,7 +45,7 @@ system("pkg_add git");
system("pkg_add python3");
chdir $admin_home_dir;
system("su gashapwn -c 'git clone $GIT_REPO'");
chdir $GIT_REPO;
chdir $REPO_DIR;
system("su gashapwn -c 'python3 -m venv venv'");
# system("su gashapwn -c '. ./venv/bin/activate && pip3 install -r ");


Loading…
Cancel
Save