mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 00:06:36 +00:00
18 lines
378 B
Bash
18 lines
378 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
message="
|
||
|
ERPNext evaluation VM (built on `date +\"%B %d, %Y\"`)
|
||
|
|
||
|
Please access ERPNext by going to http://localhost:8080 on the host system.
|
||
|
|
||
|
Do consider donating at https://frappe.io/buy
|
||
|
|
||
|
To update, login as
|
||
|
username: frappe
|
||
|
password: frappe
|
||
|
cd frappe-bench
|
||
|
bench update
|
||
|
"
|
||
|
echo "$message" | sudo tee -a /etc/issue
|
||
|
echo "$message" | sudo tee -a /etc/motd
|