Skip to content

Commit 9b4ba60

Browse files
committed
Update install.sh
1 parent fd5875c commit 9b4ba60

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

install.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,19 @@ echo "Copie des fichiers dans ${INSTALL}"
1515
mkdir $INSTALL/etc
1616
cp ./etc/* $INSTALL/etc
1717
mkdir $INSTALL/bin
18-
cp ./bin/* $INSTALL/bin
19-
chmod 700 $INSTALL/bin/*
2018
mkdir $INSTALL/lib
2119
PWD=`pwd`
2220
cp ./lib/__init__.py $INSTALL/lib
2321
ln -s $PWD/lib/backend_utils.py $INSTALL/lib/backend_utils.py
2422
ln -s $PWD/lib/ad_utils.py $INSTALL/lib/ad_utils.py
23+
ln -s $PWD/bin/changepwd.py $INSTALL/bin/changepwd.py
24+
ln -s $PWD/bin/ping.py $INSTALL/bin/ping.py
25+
ln -s $PWD/bin/resetpwd.py $INSTALL/bin/resetpwd.py
26+
ln -s $PWD/bin/upsertidentity.py $INSTALL/bin/upsertidentity.py
27+
chmod 700 $INSTALL/bin/*
2528
mkdir $INSTALL/ps1_templates
2629
cp ./ps1_templates/* $INSTALL/ps1_templates
30+
chmod 600 $INSTALL/ps1_templates/*
2731
cp config.yml $INSTALL
2832

2933
echo "Le backend a été installé dans $INSTALL"

0 commit comments

Comments
 (0)