-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adds winbindd to symlinked binaries * Fix deb install to run ldconfig to updated lib cache * Fix deb removal to run ldconfig before starting old daemon
- Loading branch information
devel
committed
Dec 6, 2020
1 parent
40fc294
commit a61e03d
Showing
12 changed files
with
54 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<addon> | ||
<name>SAMBA36</name> | ||
<friendly_name>Samba 36</friendly_name> | ||
<version>3.6.25-1</version> | ||
<version>3.6.25-2</version> | ||
<author>Scott Shambarger</author> | ||
<description> | ||
<en-us> | ||
<![CDATA[Server and Client software to interoperate with Windows machines.]]> | ||
</en-us> | ||
</description> | ||
<detail_url>https://github.com/sshambar/readynas-arm/</detail_url> | ||
<download_url>https://github.com/sshambar/readynas-arm/releases/download/Samba36-3.6.25-1/Samba36_3.6.25-1.bin</download_url> | ||
<download_url>https://github.com/sshambar/readynas-arm/releases/download/Samba36-3.6.25-2/Samba36_3.6.25-2.bin</download_url> | ||
<icon>https://github.com/sshambar/readynas-arm/releases/download/samba-addon/SAMBA36.jpg</icon> | ||
<min_raidiator_version>5.3.1</min_raidiator_version> | ||
</addon> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SAMBA36!!Samba 36!!3.6.25-1!!/etc/frontview/addons/bin/SAMBA36/start.sh!!/etc/frontview/addons/bin/SAMBA36/stop.sh!!Other!!current_url==https://github.com/sshambar/readynas-arm/releases/download/samba-addon/SAMBA36_CURRENT.xml::detail_url==https://github.com/sshambar/readynas-arm/ | ||
SAMBA36!!Samba 36!!3.6.25-2!!/etc/frontview/addons/bin/SAMBA36/start.sh!!/etc/frontview/addons/bin/SAMBA36/stop.sh!!Other!!current_url==https://github.com/sshambar/readynas-arm/releases/download/samba-addon/SAMBA36_CURRENT.xml::detail_url==https://github.com/sshambar/readynas-arm/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
[ "$1" = remove ] || exit 0 | ||
|
||
# update ld.so.cache (so old libraries are removed) | ||
/sbin/ldconfig || : | ||
|
||
if [ -f /tmp/samba36-addon.start ]; then | ||
/etc/init.d/samba start || : | ||
fi | ||
|
||
rm -f /tmp/samba36-addon.start | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters