Skip to content

Commit 8e0bd9e

Browse files
author
gau1991
committed
Merge branch 'python' of github.com:rtCamp/easyengine into python
2 parents 2339a9e + 21ecee5 commit 8e0bd9e

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,22 @@ EasyEngine (ee) is a linux shell-script collection, which makes it easy to manag
1919
- Ubuntu 12.04 & 14.04
2020
- Debian 7
2121

22+
### This is Beta version. Donot Try on Production/Live servers
23+
2224
## Quick Start
2325

2426
```bash
25-
wget -qO ee rt.cx/ee && sudo bash ee # install easyengine
27+
wget http://rt.cx/eebeta && sudo bash install # install easyengine 3.0.0-beta
2628
sudo ee site create example.com --wp # Install required packages & setup WordPress on example.com
2729
```
2830

2931
## Update EasyEngine
3032

3133

32-
Update Procedure For EasyEngine
34+
Update Procedure For EasyEngine to version 3.0.0-beta
3335

3436
```bash
35-
wget -qO eeup http://rt.cx/eeup && sudo bash eeup
37+
wget http://rt.cx/eebeta && sudo bash install
3638
```
3739

3840
## More Site Creation Commands

ee/cli/plugins/site_functions.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@ def setupdatabase(self, data):
106106
' please wait')
107107
ee_random10 = (''.join(random.sample(string.ascii_uppercase +
108108
string.ascii_lowercase + string.digits, 10)))
109-
ee_db_name = (ee_db_name[0:6] + ee_random10)
110-
109+
ee_db_username = (ee_db_name[0:6] + ee_random10)
111110
# create MySQL database
112111
Log.info(self, "Setting up database\t\t", end='')
113112
Log.debug(self, "Creating databse {0}".format(ee_db_name))
@@ -279,12 +278,12 @@ def setupwordpress(self, data):
279278
def setupwordpressnetwork(self, data):
280279
ee_site_webroot = data['webroot']
281280
EEFileUtils.chdir(self, '{0}/htdocs/'.format(ee_site_webroot))
282-
Log.info(self, "Setting up WordPress Network \t\t", end='')
281+
Log.info(self, "Setting up WordPress Network \t", end='')
283282
EEShellExec.cmd_exec(self, 'wp --allow-root core multisite-convert'
284283
' --title={0} {subdomains}'
285284
.format(data['www_domain'], subdomains='--subdomains'
286285
if not data['wpsubdir'] else ''))
287-
Log.info(self, "Done")
286+
Log.info(self, "[" + Log.ENDC + "Done" + Log.OKBLUE + "]")
288287

289288

290289
def installwp_plugin(self, plugin_name, data):

ee/core/services.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def reload_service(self, service_name):
9999
Log.info(self, "[" + Log.FAIL + "Failed" +
100100
Log.OKBLUE+"]")
101101
return False
102-
Log.info(self, "Reload : {0:10}".format(service_name), end='')
102+
Log.info(self, "Reload : {0:10}".format(service_name), end='')
103103
retcode = subprocess.getstatusoutput('service {0} reload'
104104
.format(service_name))
105105
if retcode[0] == 0:

ee/core/variables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class EEVariables():
1212
"""Intialization of core variables"""
1313

1414
# EasyEngine version
15-
ee_version = "3.0.0"
15+
ee_version = "3.0.0-beta"
1616

1717
# EasyEngine packages versions
1818
ee_wp_cli = "0.18.0"

0 commit comments

Comments
 (0)