1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/diaspora_ynh.git synced 2024-09-03 18:26:13 +02:00

Minor improvements of scripts

This commit is contained in:
Spanti Nicola (RyDroid) 2015-06-25 23:42:02 +02:00
parent 3823c8e157
commit e59f6c8790
4 changed files with 41 additions and 31 deletions

View file

@ -8,7 +8,7 @@
"developer": { "developer": {
"name": "aymhce", "name": "aymhce",
"email": "aymhce@gmail.com", "email": "aymhce@gmail.com",
"url": "http://diasporafoundation.org" "url": "https://diasporafoundation.org"
}, },
"multi_instance": "true", "multi_instance": "true",
"arguments": { "arguments": {
@ -16,18 +16,18 @@
{ {
"name": "domain", "name": "domain",
"ask": { "ask": {
"en": "Choose a domain for Diaspora", "en": "Choose a domain for diaspora*",
"fr": "Choisissez un domaine pour Diaspora" "fr": "Choisissez un domaine pour diaspora*"
}, },
"example": "domain.org" "example": "domain.org"
}, },
{ {
"name": "public_site", "name": "public_site",
"ask": { "ask": {
"en": "Is it a public Diaspora site ?", "en": "Is it a public Diaspora site?",
"fr": "Est-ce un site public ?" "fr": "Est-ce un site public ?"
}, },
"choices": ["Yes", "No"], "choices": ["yes", "YES", "Yes", "no", "NO", "No"],
"default": "Yes" "default": "Yes"
} }
] ]

View file

@ -17,7 +17,8 @@ versionname=$(lsb_release -a | grep Codename | awk -F' ' '{print $2}')
# Check domain/path availability # Check domain/path availability
sudo yunohost app checkurl $domain -a diaspora sudo yunohost app checkurl $domain -a diaspora
if [[ ! $? -eq 0 ]]; then if [[ ! $? -eq 0 ]]
then
exit 1 exit 1
fi fi
@ -27,21 +28,28 @@ full_url=https://$domain
sudo yunohost app setting diaspora final_path -v $final_path sudo yunohost app setting diaspora final_path -v $final_path
# configure sys apt-get # Configure system apt-get
cat /etc/os-release | grep -q wheezy
if [ $? = 0 ]
then
cat /etc/apt/sources.list | grep -q backports
if [ $? != 0 ]
then
sudo su -c "echo 'deb http://http.debian.net/debian wheezy-backports main' >> /etc/apt/sources.list"
fi
fi
cat /etc/apt/sources.list | grep -q backports # Get sys deps
[ $? != 0 ] && sudo su -c "echo 'deb http://http.debian.net/debian wheezy-backports main' >> /etc/apt/sources.list"
# get sys deps
sudo apt-get update sudo apt-get update
sudo apt-get install gawk libyaml-dev libsqlite3-dev sqlite3 autoconf libgdbm-dev libncurses5-dev automake bison libffi-dev\ sudo apt-get install -y -- \
build-essential libssl-dev libcurl4-openssl-dev libxml2-dev libxslt-dev imagemagick ghostscript git curl libmysqlclient-dev\ gawk libyaml-dev libsqlite3-dev sqlite3 autoconf libgdbm-dev libncurses5-dev automake bison libffi-dev \
libmagickwand-dev nodejs-legacy npm -y build-essential libssl-dev libcurl4-openssl-dev libxml2-dev libxslt-dev imagemagick ghostscript git curl libmysqlclient-dev \
libmagickwand-dev nodejs-legacy npm
[ "$versionname" == "wheezy" ] && sudo apt-get install -t wheezy-backports redis-server -y [ "$versionname" == "wheezy" ] && sudo apt-get install -t wheezy-backports redis-server -y
[ "$versionname" != "wheezy" ] && sudo apt-get install redis-server -y [ "$versionname" != "wheezy" ] && sudo apt-get install redis-server -y
# get source code # Get source code
git clone -b master git://github.com/diaspora/diaspora.git git clone -b master git://github.com/diaspora/diaspora.git
sudo mkdir -p $final_path sudo mkdir -p $final_path
@ -50,7 +58,6 @@ mv source.tar.gz diaspora/public/source.tar.gz
sudo cp -ar diaspora $final_path/../. sudo cp -ar diaspora $final_path/../.
# Generate random password # Generate random password
db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d 'A-Za-z0-9' | sed -n 's/\(.\{24\}\).*/\1/p') db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d 'A-Za-z0-9' | sed -n 's/\(.\{24\}\).*/\1/p')
# Use 'diaspora' as database name and user # Use 'diaspora' as database name and user
@ -67,30 +74,36 @@ sed -i "s@DBPASSTOCHANGE@$db_pwd@g" ../conf/database.yml
sudo cp ../conf/diaspora.yml $final_path/config/ sudo cp ../conf/diaspora.yml $final_path/config/
sudo cp ../conf/database.yml $final_path/config/ sudo cp ../conf/database.yml $final_path/config/
# install startup script # Install startup script
sudo cp ../conf/diaspora_ynh /etc/init.d/diaspora_ynh sudo cp ../conf/diaspora_ynh /etc/init.d/diaspora_ynh
sudo chmod 754 /etc/init.d/diaspora_ynh sudo chmod 754 /etc/init.d/diaspora_ynh
sudo update-rc.d diaspora_ynh defaults sudo update-rc.d diaspora_ynh defaults
# create and config user # Create and config user
sudo adduser --gecos "First Last,RoomNumber,WorkPhone,HomePhone" --disabled-login --quiet --home $final_path diaspora sudo adduser --gecos "First Last,RoomNumber,WorkPhone,HomePhone" --disabled-login --quiet --home $final_path diaspora
sudo chown -R diaspora:diaspora $final_path sudo chown -R diaspora:diaspora $final_path
# Config RVM and force get app deps (for debug) # Config RVM and force get app deps (for debug)
sudo su - diaspora -c "curl --retry 5 -sSL https://rvm.io/mpapis.asc | gpg --import - ; curl --retry 5 -L dspr.tk/1t | bash;" sudo su - diaspora -c "curl --retry 5 -sSL https://rvm.io/mpapis.asc | gpg --import - ; curl --retry 5 -L dspr.tk/1t | bash;"
#add user to sudoers for install # Add user to sudoers for install
DIASPORASUDOERSCONF="diaspora ALL=(ALL:ALL) NOPASSWD: ALL #yunhost_diaspora" DIASPORASUDOERSCONF="diaspora ALL=(ALL:ALL) NOPASSWD: ALL #yunhost_diaspora"
sudo cat /etc/sudoers | grep yunhost_diaspora -q sudo cat /etc/sudoers | grep yunhost_diaspora -q
if [ $? != 0 ] ; then sudo su -c "echo '$DIASPORASUDOERSCONF' >>/etc/sudoers" ; fi if [ $? != 0 ]
then
sudo su -c "echo '$DIASPORASUDOERSCONF' >> /etc/sudoers"
fi
sudo su - diaspora -c "rvm install 2.1" sudo su - diaspora -c "rvm install 2.1"
sudo su - diaspora -c "env REALLY_GEM_UPDATE_SYSTEM=1 gem update --system --no-user-install" sudo su - diaspora -c "env REALLY_GEM_UPDATE_SYSTEM=1 gem update --system --no-user-install"
sudo su - diaspora -c "x=1; RET=1; while [ \$x -le 5 ] && [ \"\$RET\" != 0 ] ; do gem install bundler ; RET=\$? ; x=\$(( \$x + 1 )) ; done" sudo su - diaspora -c "x=1; RET=1; while [ \$x -le 5 ] && [ \"\$RET\" != 0 ] ; do gem install bundler ; RET=\$? ; x=\$(( \$x + 1 )) ; done"
#rm user from sudoers # Remove user from sudoers
sudo cat /etc/sudoers | grep yunhost_diaspora -q sudo cat /etc/sudoers | grep yunhost_diaspora -q
if [ $? == 0 ] ; then sudo sed -i '/yunhost_diaspora/d' /etc/sudoers ; fi if [ $? == 0 ]
then
sudo sed -i '/yunhost_diaspora/d' /etc/sudoers
fi
# construct diaspora app # construct diaspora app
sudo su - diaspora -c "RAILS_ENV=production bundle install --without test development --retry 10" sudo su - diaspora -c "RAILS_ENV=production bundle install --without test development --retry 10"
@ -99,11 +112,11 @@ sudo su - diaspora -c "RAILS_ENV=production bundle exec rake assets:precompile"
cd $ori_path cd $ori_path
# debug foreman module and start service # Debug foreman module and start service
sudo mv $final_path/.profile $final_path/.profile.bak sudo mv $final_path/.profile $final_path/.profile.bak
sudo service diaspora_ynh start sudo service diaspora_ynh start
# install home page # Install home page
sudo cp ../conf/_show.html.haml $final_path/app/views/home/_show.html.haml sudo cp ../conf/_show.html.haml $final_path/app/views/home/_show.html.haml
# config nginx # config nginx
@ -123,11 +136,9 @@ sudo service nginx reload
sudo yunohost app setting diaspora skipped_uris -v "/" sudo yunohost app setting diaspora skipped_uris -v "/"
sudo yunohost app ssowatconf sudo yunohost app ssowatconf
#protect URIs # Protect URIs
if [ $is_public = "no" -o $is_public = "NO" -o $is_public = "No" ]
if [ $is_public = "No" ];
then then
sudo yunohost app setting diaspora protected_uris -v "/" sudo yunohost app setting diaspora protected_uris -v "/"
sudo yunohost app ssowatconf sudo yunohost app ssowatconf
fi fi

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
db_user=diaspora db_user=diaspora
db_name=diaspora_production db_name=diaspora_production
@ -21,4 +21,3 @@ sudo rm -rf $full_path
sudo update-rc.d -f diaspora_ynh remove sudo update-rc.d -f diaspora_ynh remove
sudo rm -f /etc/init.d/diaspora_ynh sudo rm -f /etc/init.d/diaspora_ynh

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
# Retrieve arguments # Retrieve arguments
domain=$(sudo yunohost app setting diaspora domain) domain=$(sudo yunohost app setting diaspora domain)