Skip to content

Commit a070860

Browse files
committed
re-rename to NCPi
1 parent 003c29c commit a070860

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+135
-134
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Batch-build docker container layers for NextCloudPlus
1+
# Batch-build docker container layers for NextCloudPi
22
#
33
# Copyleft 2017 by Ignacio Nunez Hernanz <nacho _a_t_ ownyourbits _d_o_t_ com>
44
# GPL licensed (see end of file) * Use at your own risk!
55
#
66

77

8-
nextcloudplus-armhf: nextcloud-armhf
9-
docker build . -f docker-armhf/nextcloudplus/Dockerfile -t ownyourbits/nextcloudplus-armhf:latest --no-cache
8+
nextcloudpi-armhf: nextcloud-armhf
9+
docker build . -f docker-armhf/nextcloudpi/Dockerfile -t ownyourbits/nextcloudpi-armhf:latest --no-cache
1010

1111
nextcloud-armhf: lamp-armhf
1212
docker build . -f docker-armhf/nextcloud/Dockerfile -t ownyourbits/nextcloud-armhf:latest
@@ -18,8 +18,8 @@ debian-ncp-armhf:
1818
docker build . -f docker-armhf/debian-ncp/Dockerfile -t ownyourbits/debian-ncp-armhf:latest
1919

2020

21-
nextcloudplus-x86: nextcloud-x86
22-
docker build . -f docker/nextcloudplus/Dockerfile -t ownyourbits/nextcloudplus-x86:latest --no-cache
21+
nextcloudpi-x86: nextcloud-x86
22+
docker build . -f docker/nextcloudpi/Dockerfile -t ownyourbits/nextcloudpi-x86:latest --no-cache
2323

2424
nextcloud-x86: lamp-x86
2525
docker build . -f docker/nextcloud/Dockerfile -t ownyourbits/nextcloud-x86:latest
@@ -31,7 +31,7 @@ debian-ncp-x86:
3131
docker build . -f docker/debian-ncp/Dockerfile -t ownyourbits/debian-ncp-x86:latest
3232

3333
devel:
34-
docker build . -f docker/devel/Dockerfile -t ownyourbits/nextcloudplus-x86:devel
34+
docker build . -f docker/devel/Dockerfile -t ownyourbits/nextcloudpi-x86:devel
3535

3636
# License
3737
#

batch.sh

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Batch creation of NextCloudPlus images and containers
3+
# Batch creation of NextCloudPi images and containers
44
#
55
# Copyleft 2017 by Ignacio Nunez Hernanz <nacho _a_t_ ownyourbits _d_o_t_ com>
66
# GPL licensed (see end of file) * Use at your own risk!
@@ -25,15 +25,11 @@ source buildlib.sh # initializes $IMGNAME
2525

2626
# Docker x86
2727
docker pull debian:stretch-slim
28-
make nextcloudplus-x86 && {
29-
docker push ownyourbits/nextcloudplus-x86
28+
make nextcloudpi-x86 && {
29+
docker push ownyourbits/nextcloudpi-x86
3030
docker push ownyourbits/nextcloud-x86
3131
docker push ownyourbits/lamp-x86
3232
docker push ownyourbits/debian-ncp-x86
33-
34-
# keep old container updated, at least for a while
35-
docker tag ownyourbits/nextcloudplus-x86 ownyourbits/nextcloudpi-x86
36-
docker push ownyourbits/nextcloudpi-x86
3733
}
3834

3935
# docker armhf

bin/ncp-check-updates

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ VERFILE=/usr/local/etc/ncp-version
66
LATEST=/var/run/.ncp-latest-version
77

88
if ncp-test-updates; then
9-
echo -e "\nNextCloudPlus \e[1m$( cat $VERFILE)\e[0m is outdated"
9+
echo -e "\nNextCloudPi \e[1m$( cat $VERFILE)\e[0m is outdated"
1010
echo -e "update to \e[1m$( cat $LATEST )\e[0m through 'ncp-config' or type 'sudo ncp-update'"
1111
else
12-
echo -e "\nNextCloudPlus \e[1m$( cat $VERFILE)\e[0m is up to date"
12+
echo -e "\nNextCloudPi \e[1m$( cat $VERFILE)\e[0m is up to date"
1313
fi

bin/ncp-config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# NextCloudPlus software configuration
3+
# NextCloudPi software configuration
44
#
55
# Copyleft 2017 by Ignacio Nunez Hernanz <nacho _a_t_ ownyourbits _d_o_t_ com>
66
# GPL licensed (see end of file) * Use at your own risk!
@@ -18,7 +18,7 @@ function nextcloud-config()
1818
{
1919
local DIALOG_OK=0
2020
local VERFILE=/var/run/.ncp-latest-version
21-
local BACKTITLE="NextCloudPlus configuration ver. "
21+
local BACKTITLE="NextCloudPi configuration ver. "
2222
local CONFDIR=/usr/local/etc/ncp-config.d/
2323
local DESC
2424

@@ -27,7 +27,7 @@ function nextcloud-config()
2727
local CHANGELOG=$( head -4 /usr/local/etc/ncp-changelog )
2828
ncp-test-updates 2>/dev/null && \
2929
whiptail --backtitle "$BACKTITLE $( cat /usr/local/etc/ncp-version )" \
30-
--title "NextCloudPlus update available" \
30+
--title "NextCloudPi update available" \
3131
--clear --yesno "Update to $( cat $VERFILE )?\n\n$CHANGELOG" \
3232
15 70
3333
[[ $? -eq $DIALOG_OK ]] && ncp-update
@@ -45,7 +45,7 @@ function nextcloud-config()
4545
# launch the selection menu
4646
local script
4747
script=$( whiptail --backtitle "$BACKTITLE $( cat /usr/local/etc/ncp-version )" \
48-
--title "NextCloudPlus Software Configuration Tool (ncp-config)" \
48+
--title "NextCloudPi Software Configuration Tool (ncp-config)" \
4949
--cancel-button Finish --ok-button Select \
5050
--menu "Select program to configure and activate:" 20 105 10 \
5151
"${LIST[@]}" \

bin/ncp-diag

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# NextCloudPlus diagnostics report
3+
# NextCloudPi diagnostics report
44
#
55
# Copyleft 2017 by Ignacio Nunez Hernanz <nacho _a_t_ ownyourbits _d_o_t_ com>
66
# GPL licensed (see end of file) * Use at your own risk!
@@ -12,8 +12,8 @@
1212
#
1313

1414
# Distro, NCP version and tag
15-
echo "NextCloudPlus version|$( cat /usr/local/etc/ncp-version )"
16-
[[ -f /usr/local/etc/ncp-baseimage ]] && echo "NextCloudPlus image|$( cat /usr/local/etc/ncp-baseimage )"
15+
echo "NextCloudPi version|$( cat /usr/local/etc/ncp-version )"
16+
[[ -f /usr/local/etc/ncp-baseimage ]] && echo "NextCloudPi image|$( cat /usr/local/etc/ncp-baseimage )"
1717
echo "distribution|$( cat /etc/issue )"
1818

1919
# Data

bin/ncp-report

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# NextCloudPlus diagnostics report
3+
# NextCloudPi diagnostics report
44
#
55
# Copyleft 2017 by Ignacio Nunez Hernanz <nacho _a_t_ ownyourbits _d_o_t_ com>
66
# GPL licensed (see end of file) * Use at your own risk!
@@ -38,7 +38,7 @@ echo "<--! Paste this in GitHub report -->"
3838

3939
##
4040

41-
open_summary "NextCloudPlus diagnostics"
41+
open_summary "NextCloudPi diagnostics"
4242
bash /usr/local/bin/ncp-diag | column -t -s'|'
4343
close_summary
4444

bin/ncp-suggestions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
#
4-
# NextCloudPlus configuration suggestions
4+
# NextCloudPi configuration suggestions
55
#
66
# Copyleft 2018 by Ignacio Nunez Hernanz <nacho _a_t_ ownyourbits _d_o_t_ com>
77
# GPL licensed (see end of file) * Use at your own risk!

bin/ncp-update

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# update latest NextCloudPlus code from github
3+
# update latest NextCloudPi code from github
44

55
{
66
[ "$(id -u)" -ne 0 ] && { printf "Must be run as root. Try 'sudo $0'\n"; exit 1; }
@@ -33,7 +33,7 @@
3333
sed '/HEAD ->\|origin/s|\[.*\(tag: v[0-9]\+\.[0-9]\+\.[0-9]\+\).*\]|[\1]|' | \
3434
sed 's|* \[tag: |[|' > /usr/local/etc/ncp-changelog
3535
}
36-
echo -e "NextCloudPlus updated to version $VER"
36+
echo -e "NextCloudPi updated to version $VER"
3737
}
3838

3939
cd /

build-SD-bananapi.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Batch creation of NextCloudPlus image for the Banana Pi
3+
# Batch creation of NextCloudPi image for the Banana Pi
44
#
55
# Copyleft 2017 by Ignacio Nunez Hernanz <nacho _a_t_ ownyourbits _d_o_t_ com>
66
# GPL licensed (see end of file) * Use at your own risk!

build-SD-odroidHC2.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Batch creation of NextCloudPlus image for the Odroid HC1
3+
# Batch creation of NextCloudPi image for the Odroid HC1
44
#
55
# Copyleft 2017 by Ignacio Nunez Hernanz <nacho _a_t_ ownyourbits _d_o_t_ com>
66
# GPL licensed (see end of file) * Use at your own risk!

0 commit comments

Comments
 (0)