-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…geral do servidor; instalado python 2 e 3; inciado customizacao de motd
- Loading branch information
Showing
4 changed files
with
84 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Enable/disable the dynamic MOTD news service | ||
# This is a useful way to provide dynamic, informative | ||
# information pertinent to the users and administrators | ||
# of the local system | ||
ENABLED=0 | ||
|
||
# Configure the source of dynamic MOTD news | ||
# White space separated list of 0 to many news services | ||
# For security reasons, these must be https | ||
# and have a valid certificate | ||
# Canonical runs a service at motd.ubuntu.com, and you | ||
# can easily run one too | ||
URLS="https://motd.ubuntu.com" | ||
|
||
# Specify the time in seconds, you're willing to wait for | ||
# dynamic MOTD news | ||
# Note that news messages are fetched in the background by | ||
# a systemd timer, so this should never block boot or login | ||
WAIT=5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
|
||
printf "\n" | ||
printf " * Issues no GitHub: https://github.com/fititnt/cplp-aiops/issues?q=is%3Aissue+is%3Aopen+label%3Aserver-aguia-pescadora\n" | ||
#printf " * Management: https://landscape.canonical.com\n" | ||
#printf " * Support: https://ubuntu.com/advantage\n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
export TERM=xterm-256color | ||
green=$( tput setaf 10 ); | ||
normal=$( tput sgr 0); | ||
echo | ||
echo "${green}------------------------------------------------------------------------------- | ||
Ajuda do agua-pescadora.etica.ai | ||
PACOTES INSTALADOS | ||
PYTHON | ||
Padrao do sistema: 2.6 (voce pode customizar um alias de python para python3) | ||
python | ||
Python 2.6: | ||
python2 | ||
Python 3.6 | ||
python3 | ||
LINKS EXTERNOS | ||
Discussão no GitHub: | ||
- https://github.com/fititnt/cplp-aiops/issues?q=is%3Aissue+is%3Aopen+label%3Aserver-ag |