mirror of
https://github.com/GNS3/gns3-server
synced 2024-12-26 16:58:28 +00:00
fixed some shell bugs
This commit is contained in:
parent
3b0336bd7e
commit
952b4e7249
@ -164,7 +164,7 @@ apt-get install -y gns3-server
|
|||||||
log "Create user GNS3 with /opt/gns3 as home directory"
|
log "Create user GNS3 with /opt/gns3 as home directory"
|
||||||
if [ ! -d "/opt/gns3/" ]
|
if [ ! -d "/opt/gns3/" ]
|
||||||
then
|
then
|
||||||
useradd -d /opt/gns3/ -m gns3
|
useradd -m -d /opt/gns3/ gns3
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
@ -303,10 +303,11 @@ log "GNS3 installed with success"
|
|||||||
|
|
||||||
if [ $WELCOME_SETUP == 1 ]
|
if [ $WELCOME_SETUP == 1 ]
|
||||||
then
|
then
|
||||||
apt-get install -y net-tools
|
NEEDRESTART_MODE=a apt-get install -y net-tools
|
||||||
NEEDRESTART_MODE=a apt-get install -y python3-pip
|
NEEDRESTART_MODE=a apt-get install -y python3-pip
|
||||||
NEEDRESTART_MODE=a pip install --no-input --upgrade pip
|
NEEDRESTART_MODE=a apt-get install -y dialog
|
||||||
NEEDRESTART_MODE=a pip install --no-input pythondialog
|
pip install --no-input --upgrade pip
|
||||||
|
pip install --no-input pythondialog
|
||||||
|
|
||||||
curl https://raw.githubusercontent.com/Xatrekak/gns3-server/remote_install_changes/scripts/welcome.py > /usr/local/bin/welcome.py
|
curl https://raw.githubusercontent.com/Xatrekak/gns3-server/remote_install_changes/scripts/welcome.py > /usr/local/bin/welcome.py
|
||||||
|
|
||||||
@ -324,6 +325,7 @@ chmod 755 /etc/systemd/system/getty@tty1.service.d/override.conf
|
|||||||
chown root:root /etc/systemd/system/getty@tty1.service.d/override.conf
|
chown root:root /etc/systemd/system/getty@tty1.service.d/override.conf
|
||||||
|
|
||||||
echo "python3 /usr/local/bin/welcome.py" >> /opt/gns3/.bashrc
|
echo "python3 /usr/local/bin/welcome.py" >> /opt/gns3/.bashrc
|
||||||
|
usermod --shell /bin/bash gns3
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -107,8 +107,11 @@ def gns3vm_version():
|
|||||||
"""
|
"""
|
||||||
Return the GNS3 VM version
|
Return the GNS3 VM version
|
||||||
"""
|
"""
|
||||||
|
try:
|
||||||
with open('/home/gns3/.config/GNS3/gns3vm_version') as f:
|
with open('/home/gns3/.config/GNS3/gns3vm_version') as f:
|
||||||
return f.read().strip()
|
return f.read().strip()
|
||||||
|
except FileNotFoundError:
|
||||||
|
return "Remote Install"
|
||||||
|
|
||||||
|
|
||||||
d = Dialog(dialog="dialog", autowidgetsize=True)
|
d = Dialog(dialog="dialog", autowidgetsize=True)
|
||||||
|
Loading…
Reference in New Issue
Block a user