Add a script to install requirements
This commit is contained in:
parent
82789d394f
commit
4857a0b228
2 changed files with 35 additions and 1 deletions
26
commands/first-install.sh
Executable file
26
commands/first-install.sh
Executable file
|
@ -0,0 +1,26 @@
|
|||
#! /bin/bash
|
||||
|
||||
# Install missing packets
|
||||
PACKAGES_LIST="libnet-ldap-perl libxml-libxml-perl"
|
||||
|
||||
if ! whereis dpkg > /dev/null 2> /dev/null
|
||||
then
|
||||
aptitude install dpkg
|
||||
fi
|
||||
|
||||
for PK in $PACKAGES_LIST
|
||||
do
|
||||
if ! dpkg -l | grep "^ii" | grep "$PK" > /dev/null 2> /dev/null
|
||||
then
|
||||
aptitude install "$PK"
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
# Add intradmin user if missing
|
||||
if ! getent passwd | grep "intradmin:" > /dev/null 2> /dev/null
|
||||
then
|
||||
useradd --shell /bin/false --uid 942 intradmin
|
||||
fi
|
||||
|
||||
echo "System ready!"
|
Reference in a new issue