Skip to content

Instantly share code, notes, and snippets.

View jabibi's full-sized avatar
🏢
Working in Madrid

Javi Melendez jabibi

🏢
Working in Madrid
View GitHub Profile
[options]
; This is the password that allows database operations:
admin_passwd = admin
; DATABASE OPTIONS
db_host = False
db_port = False
db_user = odoo
db_template = template2
db_password = False
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
set -o xtrace
#
# ROOT
#
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"