mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-20 13:23:08 +00:00
9 lines
197 B
Bash
9 lines
197 B
Bash
#!/bin/sh
|
|
set -ex
|
|
|
|
# reset terminal attributes on login
|
|
sed -i "1s/^/$(export TERM=vt220; tput sgr0; tput smam)/" /etc/issue
|
|
|
|
# create GNS3 user
|
|
printf 'gns3\ngns3\n' | adduser --gecos 'GNS3' gns3
|