Skip to content

Commit

Permalink
v158
Browse files Browse the repository at this point in the history
+ DietPi-Software | Resolved an issue with 404 and Owncloud:
https://github.com/Fourdee/DietPi/issues/1225
  • Loading branch information
Fourdee committed Nov 9, 2017
1 parent a906504 commit c556749
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ DietPi-Set_Hardware | Soundcard: When setting USB-DAC, and it fails detection, t
DietPi-Set_Software | DietPi User: Resolved an issue where /etc/sudoers was being incorrectly written with additional \.
DietPi-Software | Uninstalling DietPi-Cam, will no longer remove the motion package, shared with Motioneye, thanks @vilhelmp: https://github.com/Fourdee/DietPi/issues/1194
DietPi-Software | Resolved an issue with Emby server (ARMv7/ARMv8) failing to install, due to missing packages not available in Debian repo: https://github.com/Fourdee/DietPi/issues/1150
DietPi-Software | Resolved an issue with 404 and Owncloud: https://github.com/Fourdee/DietPi/issues/1225

Allo Web Interface Changes:
Roon | Resolved an issue where Roon was not generating unique IDs, resulting in multiple devices on the same network, having issues with Roon Core detection.
Expand Down
15 changes: 13 additions & 2 deletions dietpi/dietpi-software
Original file line number Diff line number Diff line change
Expand Up @@ -5235,6 +5235,13 @@ _EOF_
#Stop service
service logitechmediaserver stop

#Stretch
# Compile pre-req CPAN modules???
# if (( $DISTRO >= 4 )); then

# AGI yasm git build-essential automake cpanminus nasm libxml-parser-perl libexpat1-dev libgif-dev zlib1g-dev libjpeg-dev libpng-dev


# + ARMv6 cpan
if (( $HW_ARCH == 1 )); then

Expand Down Expand Up @@ -8944,12 +8951,16 @@ _EOF_
INSTALLING_INDEX=47
if (( ${aSOFTWARE_INSTALL_STATE[$INSTALLING_INDEX]} == 1 )); then

#Symlink /usr/share/owncloud to /var/www/owncloud: https://github.com/Fourdee/DietPi/issues/1225#issuecomment-343263082
rm -R /var/www/owncloud &> /dev/null
ln -fs /usr/share/owncloud /var/www/owncloud

#Setup Data directory
local target_data_dir="$FP_DIETPI_USERDATA_DIRECTORY/owncloud_data"
mkdir -p "$target_data_dir"

#Create symlink from default /var/www/owncloud/data to FP_DIETPI_USERDATA_DIRECTORY
local target_data_symlink="/var/www/owncloud/data"
#Create symlink from default owncloud/data to FP_DIETPI_USERDATA_DIRECTORY
local target_data_symlink="/usr/share/owncloud/data"
mkdir -p "$target_data_symlink" &> /dev/null

# - Copy existing data to our data location
Expand Down

0 comments on commit c556749

Please sign in to comment.