Welcome to mirror list, hosted at ThFree Co, Russian Federation.

nc-import-ncp.sh « BACKUPS « ncp « bin - github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c83da24affaa226af243031fc9dec61c8151ebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash

# Import NextCloudPi configuration
#
#
# Copyleft 2017 by Courtney Hicks
# GPL licensed (see end of file) * Use at your own risk!
#



CFGDIR="/usr/local/etc/ncp-config.d"

configure() 
{
  [[ -f "$FILE" ]] || { echo "export file $FILE does not exist"; return 1; }

  source /usr/local/etc/library.sh || return 1
  cd "$CFGDIR"   || return 1

  # extract export
  tar -xf "$FILE" -C "$CFGDIR"

  # UGLY workaround to prevent apache from restarting upon activating some extras
  # which leads to the operation appearing to fail in ncp-web
  #echo "invalid_op" >> /etc/apache2/sites-available/000-default.conf

  # activate
  # TODO

  # Fix invalid configuration
  #sed -i "/^invalid_op/d" /etc/apache2/sites-available/000-default.conf

  echo -e "\nconfiguration restored"

  # delayed in bg so it does not kill the connection, and we get AJAX response
  bash -c "sleep 2 && service apache2 reload" &>/dev/null &
}

install() { :; }

# License
#
# This script is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This script is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this script; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
# Boston, MA  02111-1307  USA