This commit is contained in:
parent
bf09f29f48
commit
6e978b668e
|
|
@ -16,11 +16,10 @@ install_tmp=${rootPath}/tmp/mw_install.pl
|
|||
openrestyDir=${serverPath}/source/openresty
|
||||
|
||||
if id www &> /dev/null ;then
|
||||
echo "www UID is `id -u www`"
|
||||
echo "www Shell is `grep "^www:" /etc/passwd |cut -d':' -f7 `"
|
||||
echo "www uid is `id -u www`"
|
||||
echo "www shell is `grep "^www:" /etc/passwd |cut -d':' -f7 `"
|
||||
else
|
||||
groupadd www
|
||||
# useradd -g www -s /sbin/nologin www
|
||||
useradd -g www -s /bin/bash www
|
||||
fi
|
||||
|
||||
|
|
|
|||
|
|
@ -16,6 +16,14 @@ bash ${rootPath}/scripts/getos.sh
|
|||
OSNAME=`cat ${rootPath}/data/osname.pl`
|
||||
|
||||
|
||||
if id www &> /dev/null ;then
|
||||
echo "www uid is `id -u www`"
|
||||
echo "www shell is `grep "^www:" /etc/passwd |cut -d':' -f7 `"
|
||||
else
|
||||
groupadd www
|
||||
useradd -g www -s /bin/bash www
|
||||
fi
|
||||
|
||||
echo $OSNAME
|
||||
install_tmp=${rootPath}/tmp/mw_install.pl
|
||||
Install_rsyncd()
|
||||
|
|
|
|||
|
|
@ -1,18 +1,8 @@
|
|||
function str2Obj(str){
|
||||
var data = {};
|
||||
kv = str.split('&');
|
||||
for(i in kv){
|
||||
v = kv[i].split('=');
|
||||
data[v[0]] = v[1];
|
||||
}
|
||||
return data;
|
||||
}
|
||||
|
||||
function rsPost(method,args,callback, title){
|
||||
|
||||
var _args = null;
|
||||
if (typeof(args) == 'string'){
|
||||
_args = JSON.stringify(str2Obj(args));
|
||||
_args = JSON.stringify(toArrayObject(args));
|
||||
} else {
|
||||
_args = JSON.stringify(args);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue