Skip to content

Commit 0dd278e

Browse files
authored
Various improvements and additions
- Tautulli added - DuckDNS added - ShellCheck implemented -Other general improvements
1 parent 80677b6 commit 0dd278e

File tree

513 files changed

+749
-2149
lines changed

Some content is hidden

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

513 files changed

+749
-2149
lines changed

.travis.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ before_install:
99
- sudo apt-get install pcregrep
1010

1111
script:
12-
- sudo bash ./integration-tests/int-newline-errors.sh
13-
- sudo bash ./integration-tests/int-bashate.sh
14-
- sudo bash ./integration-tests/int-apps-install-uninstall.sh
15-
12+
- sudo bash ./integration-tests/int-newline-errors.sh
13+
- sudo bash ./integration-tests/int-bashate.sh
14+
- sudo bash ./integration-tests/int-shellcheck.sh
15+
- sudo bash ./integration-tests/int-apps-install-uninstall.sh
16+
1617
matrix:
1718
fast_finish: true

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Features features of AtoMiC ToolKit include:
5555
<li>Organizr - Install, Uninstall, Update</li>
5656
<li>PhpSysInfo - Install, Uninstall, Update</li>
5757
<li>Plex - Install, Uninstall, Update and Backup / Restore</li>
58-
<li>PlexPy - Install, Uninstall, Update and Backup / Restore</li>
58+
<li>Tautulli - Install, Uninstall, Update and Backup / Restore</li>
5959
<li>Private Internet Access - Install, Uninstall, Update</li>
6060
<li>pyLoad - Install, Uninstall, Update and Backup / Restore</li>
6161
<li>qBittorrent - Install, Uninstall, Reset Password, Update and Backup / Restore</li>

batch-processes/bat-apps-install-uninstall.sh

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
#!/bin/bash
2-
# shellcheck disable=SC2034
3-
# shellcheck disable=SC1090
42
# Script Name: AtoMiC Batch Application Install Uninstall
5-
# Author: TommyE123
6-
# Publisher: http://www.htpcBeginner.com
7-
# License: MIT License (refer to README.md for more details)
83

94
source "$SCRIPTPATH/setup.sh" -i muximux
105
source "$SCRIPTPATH/setup.sh" -u muximux
@@ -68,9 +63,6 @@ source "$SCRIPTPATH/setup.sh" -u nzbhydra
6863
source "$SCRIPTPATH/setup.sh" -i plexmediaserver
6964
source "$SCRIPTPATH/setup.sh" -x plexmediaserver
7065
source "$SCRIPTPATH/setup.sh" -u plexmediaserver
71-
source "$SCRIPTPATH/setup.sh" -i plexpy
72-
source "$SCRIPTPATH/setup.sh" -x plexpy
73-
source "$SCRIPTPATH/setup.sh" -u plexpy
7466
source "$SCRIPTPATH/setup.sh" -i pyload
7567
# source "$SCRIPTPATH/setup.sh" -x pyload
7668
source "$SCRIPTPATH/setup.sh" -u pyload
@@ -107,6 +99,9 @@ source "$SCRIPTPATH/setup.sh" -u subsonic
10799
source "$SCRIPTPATH/setup.sh" -i syncthing
108100
source "$SCRIPTPATH/setup.sh" -x syncthing
109101
source "$SCRIPTPATH/setup.sh" -u syncthing
102+
source "$SCRIPTPATH/setup.sh" -i tautulli
103+
source "$SCRIPTPATH/setup.sh" -x tautulli
104+
source "$SCRIPTPATH/setup.sh" -u tautulli
110105
source "$SCRIPTPATH/setup.sh" -i transmission-daemon
111106
source "$SCRIPTPATH/setup.sh" -x transmission-daemon
112107
source "$SCRIPTPATH/setup.sh" -u transmission-daemon

batch-processes/bat-apps-install.sh

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
#!/bin/bash
2-
# shellcheck disable=SC2034
3-
# shellcheck disable=SC1090
42
# Script Name: AtoMiC Batch Test Application Installer
5-
# Author: TommyE123
6-
# Publisher: http://www.htpcBeginner.com
7-
# License: MIT License (refer to README.md for more details)
83

94
source "$SCRIPTPATH/setup.sh" -i couchpotato
105
# source "$SCRIPTPATH/setup.sh" -i deluged
@@ -27,7 +22,6 @@ source "$SCRIPTPATH/setup.sh" -i ombi
2722
source "$SCRIPTPATH/setup.sh" -i organizr
2823
source "$SCRIPTPATH/setup.sh" -i phpsysinfo
2924
source "$SCRIPTPATH/setup.sh" -i plexmediaserver
30-
source "$SCRIPTPATH/setup.sh" -i plexpy
3125
# source "$SCRIPTPATH/setup.sh" -i pyload
3226
source "$SCRIPTPATH/setup.sh" -i qbittorrent-nox
3327
source "$SCRIPTPATH/setup.sh" -i radarr
@@ -42,6 +36,7 @@ source "$SCRIPTPATH/setup.sh" -i sabnzbdplus
4236
source "$SCRIPTPATH/setup.sh" -i sonarr
4337
# source "$SCRIPTPATH/setup.sh" -i subsonic
4438
source "$SCRIPTPATH/setup.sh" -i syncthing
39+
source "$SCRIPTPATH/setup.sh" -i tautulli
4540
source "$SCRIPTPATH/setup.sh" -i transmission-daemon
4641
source "$SCRIPTPATH/setup.sh" -i ubooquity
4742
source "$SCRIPTPATH/setup.sh" -i watcher

batch-processes/bat-apps-uninstall.sh

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
#!/bin/bash
2-
# shellcheck disable=SC2034
3-
# shellcheck disable=SC1090
42
# Script Name: AtoMiC Batch Test Application uninstaller
5-
# Author: TommyE123
6-
# Publisher: http://www.htpcBeginner.com
7-
# License: MIT License (refer to README.md for more details)
83

94
source "$SCRIPTPATH/setup.sh" -u couchpotato
105
source "$SCRIPTPATH/setup.sh" -u deluged
@@ -27,7 +22,6 @@ source "$SCRIPTPATH/setup.sh" -u ombi
2722
source "$SCRIPTPATH/setup.sh" -u organizr
2823
source "$SCRIPTPATH/setup.sh" -u phpsysinfo
2924
source "$SCRIPTPATH/setup.sh" -u plexmediaserver
30-
source "$SCRIPTPATH/setup.sh" -u plexpy
3125
source "$SCRIPTPATH/setup.sh" -u pyload
3226
source "$SCRIPTPATH/setup.sh" -u qbittorrent-nox
3327
source "$SCRIPTPATH/setup.sh" -u radarr
@@ -42,6 +36,7 @@ source "$SCRIPTPATH/setup.sh" -u sickrage
4236
source "$SCRIPTPATH/setup.sh" -u sonarr
4337
source "$SCRIPTPATH/setup.sh" -u subsonic
4438
source "$SCRIPTPATH/setup.sh" -u syncthing
39+
source "$SCRIPTPATH/setup.sh" -i tautulli
4540
source "$SCRIPTPATH/setup.sh" -u transmission-daemon
4641
source "$SCRIPTPATH/setup.sh" -u ubooquity
4742
source "$SCRIPTPATH/setup.sh" -u watcher

batch-processes/bat-apps-update.sh

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
#!/bin/bash
2-
# shellcheck disable=SC2034
3-
# shellcheck disable=SC1090
42
# Script Name: AtoMiC Batch Test Application Update
5-
# Author: TommyE123
6-
# Publisher: http://www.htpcBeginner.com
7-
# License: MIT License (refer to README.md for more details)
83

94
source "$SCRIPTPATH/setup.sh" -m couchpotato
105
source "$SCRIPTPATH/setup.sh" -m deluged
@@ -27,7 +22,6 @@ source "$SCRIPTPATH/setup.sh" -m nzbhydra
2722
source "$SCRIPTPATH/setup.sh" -m organizr
2823
source "$SCRIPTPATH/setup.sh" -m phpsysinfo
2924
source "$SCRIPTPATH/setup.sh" -m plexmediaserver
30-
source "$SCRIPTPATH/setup.sh" -m plexpy
3125
source "$SCRIPTPATH/setup.sh" -m pyload
3226
source "$SCRIPTPATH/setup.sh" -m qbittorrent-nox
3327
source "$SCRIPTPATH/setup.sh" -m radarr
@@ -42,6 +36,7 @@ source "$SCRIPTPATH/setup.sh" -m sickrage
4236
source "$SCRIPTPATH/setup.sh" -m sonarr
4337
source "$SCRIPTPATH/setup.sh" -m subsonic
4438
source "$SCRIPTPATH/setup.sh" -m syncthing
39+
source "$SCRIPTPATH/setup.sh" -i tautulli
4540
source "$SCRIPTPATH/setup.sh" -m transmission-daemon
4641
source "$SCRIPTPATH/setup.sh" -m ubooquity
4742
source "$SCRIPTPATH/setup.sh" -m watcher

couchpotato/couchpotato-constants.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# shellcheck disable=SC2034
2+
33
APPNAME='couchpotato'
44
APPSHORTNAME='cp'
55
APPPATH='/opt/couchpotato'

couchpotato/couchpotato-default-update.sh

-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
#!/bin/bash
22
# Script Name: AtoMiC CouchPotato default update
3-
# Author: TommyE123
4-
# Publisher: http://www.htpcbeginner.com
5-
6-
# DO NOT EDIT ANYTHING UNLESS YOU KNOW WHAT YOU ARE DOING.
73

84
echo -e "${YELLOW}--->Updating Default file...$ENDCOLOR"
95

couchpotato/couchpotato-installer.sh

-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
#!/bin/bash
2-
# shellcheck disable=SC1090
32
# Script Name: AtoMiC CouchPotato Installer
4-
# Author: TommyE123
5-
# Publisher: http://www.htpcBeginner.com
6-
# License: MIT License (refer to README.md for more details)
73

8-
source "$SCRIPTPATH/inc/app-setup-check.sh"
94
source "$SCRIPTPATH/inc/commons.sh"
105
source "$SCRIPTPATH/inc/header.sh"
116
echo -e "${GREEN}AtoMiC $APPTITLE Installer Script$ENDCOLOR"

couchpotato/couchpotato-menu.sh

-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
#!/bin/bash
2-
# shellcheck disable=SC1090
32
# Script Name: AtoMiC CouchPotato Menu
4-
# Author: TommyE123
5-
# Publisher: http://www.htpcBeginner.com
6-
# License: MIT License (refer to README.md for more details)
73

8-
# DO NOT EDIT ANYTHING UNLESS YOU KNOW WHAT YOU ARE DOING.
9-
10-
source "$SCRIPTPATH/inc/app-setup-check.sh"
114
SUBCHOICE=$(whiptail --title "AtoMiC Toolkit - Manage CouchPotato" \
125
--menu "What would you like to do?" --backtitle "$BACKTITLE" \
136
--fb --cancel-button "Exit" $LINES $COLUMNS "$NETLINES" \

couchpotato/couchpotato-reverse-proxy-disable.sh

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#!/bin/bash
22
# Script Name: AtoMiC Couchpotato Reverse Proxy Disable.
3-
# Author: TommyE123
4-
# Publisher: http://www.htpcBeginner.com
5-
# License: MIT License (refer to README.md for more details)
63

74
if sed -i "/url_base/c\\url_base = " "$APPSETTINGS"; then
85
echo "Updated url_base in $APPSETTINGS"

couchpotato/couchpotato-reverse-proxy-enable.sh

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#!/bin/bash
22
# Script Name: AtoMiC Couchpotato Reverse Proxy Enable.
3-
# Author: TommyE123
4-
# Publisher: http://www.htpcBeginner.com
5-
# License: MIT License (refer to README.md for more details)
63

74
if sed -i "/url_base/c\\url_base = /couchpotato" "$APPSETTINGS"; then
85
echo "Updated url_base in $APPSETTINGS"

couchpotato/couchpotato-systemd-update.sh

-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
#!/bin/bash
22
# Script Name: AtoMiC CouchPotato SystemD
3-
# Author: TommyE123
4-
# Publisher: http://www.htpcBeginner.com
5-
# License: MIT License (refer to README.md for more details)
6-
7-
# DO NOT EDIT ANYTHING UNLESS YOU KNOW WHAT YOU ARE DOING.
83

94
sudo sed -i "s@ExecStart=/var/lib/CouchPotatoServer/CouchPotato.py@ExecStart=/usr/bin/python $APPPATH/CouchPotato.py --daemon --quiet --data_dir=$APPPATH/data@g" /etc/systemd/system/$APPSYSTEMD || { echo -e $RED'Modifying ExecStart in SYSTEMD file failed.'$ENDCOLOR; exit 1; }
105
sudo sed -i "s@Type=simple@Type=forking@g" /etc/systemd/system/$APPSYSTEMD || { echo -e $RED'Modifying TYPE in SYSTEMD file failed.'$ENDCOLOR; exit 1; }

couchpotato/couchpotato-uninstaller.sh

-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
#!/bin/bash
22
# Script Name: AtoMiC CouchPotato Uninstaller
3-
# Author: TommyE123
4-
# Publisher: http://www.htpcBeginner.com
5-
# License: MIT License (refer to README.md for more details)
6-
#
73

8-
# DO NOT EDIT ANYTHING UNLESS YOU KNOW WHAT YOU ARE DOING.
9-
10-
source "$SCRIPTPATH/inc/app-setup-check.sh"
114
source "$SCRIPTPATH/inc/commons.sh"
125
source "$SCRIPTPATH/inc/header.sh"
136
echo -e "${GREEN}AtoMiC $APPTITLE Uninstaller Script$ENDCOLOR"

couchpotato/couchpotato-update.sh

-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
#!/bin/bash
2-
# shellcheck disable=SC1090
32
# Script Name: AtoMiC CouchPotato Updater
4-
# Author: TommyE123
5-
# Publisher: http://www.htpcBeginner.com
6-
# License: MIT License (refer to README.md for more details)
73

8-
source "$SCRIPTPATH/inc/app-setup-check.sh"
94
source "$SCRIPTPATH/inc/commons.sh"
105
source "$SCRIPTPATH/inc/header.sh"
116
echo -e "${GREEN}AtoMiC $APPTITLE Update Script$ENDCOLOR"

deluged/deluged-constants.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# shellcheck disable=SC2034
2+
33
APPNAME='deluged'
44
APPSHORTNAME='deluge'
55
APPPATH="/home/$UNAME/.config/deluge"

deluged/deluged-default-update.sh

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/bin/bash
22
# Script Name: AtoMiC Deluge default update
3-
# Author: TommyE123
4-
# Publisher: http://www.htpcbeginner.com
53

64
echo -e "${YELLOW}--->Updating Default file...$ENDCOLOR"
75

deluged/deluged-installer.sh

-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
#!/bin/bash
2-
# shellcheck disable=SC1090
32
# Script Name: AtoMiC Deluge Installer
4-
# Author: TommyE123
5-
# Publisher: http://www.htpcBeginner.com
6-
# License: MIT License (refer to README.md for more details)
73

8-
source "$SCRIPTPATH/inc/app-setup-check.sh"
94
source "$SCRIPTPATH/inc/commons.sh"
105
source "$SCRIPTPATH/inc/header.sh"
116
echo -e "${GREEN}AtoMiC $APPTITLE Installer Script$ENDCOLOR"

deluged/deluged-menu.sh

-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
#!/bin/bash
2-
# shellcheck disable=SC1090
3-
# shellcheck disable=SC2034
42
# Script Name: AtoMiC Deluge Menu
5-
# Author: TommyE123
6-
# Publisher: http://www.htpcBeginner.com
7-
# License: MIT License (refer to README.md for more details)
83

9-
source "$SCRIPTPATH/inc/app-setup-check.sh"
104
SUBCHOICE=$(whiptail --title "AtoMiC Toolkit - Manage Deluge" \
115
--menu "What would you like to do?" --backtitle "$BACKTITLE" \
126
--fb --cancel-button "Exit" $LINES $COLUMNS "$NETLINES" \

deluged/deluged-repository-configurator.sh

-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
#!/bin/bash
2-
# shellcheck disable=SC2034
32
# Script Name: AtoMiC Deluge Repo config Script
4-
# Author: TommyE123
5-
# Publisher: http://www.htpcBeginner.com
6-
# License: MIT License (refer to README.md for more details)
73

84
CODENAME=$(lsb_release -c -s)
95

deluged/deluged-settings-configurator.sh

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#!/bin/bash
22
# Script Name: AtoMiC Deluge settings configurator
3-
# Author: TommyE123
4-
# Publisher: http://www.htpcBeginner.com
5-
# License: MIT License (refer to README.md for more details)
63

74
echo
85
if [[ ! -f $APPSETTINGS ]]; then

deluged/deluged-systemd-update.sh

-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
#!/bin/bash
22
# Script Name: AtoMiC Deluge systemd update
3-
# Author: TommyE123
4-
# Publisher: http://www.htpcBeginner.com
5-
# License: MIT License (refer to README.md for more details)
63

74
sudo sed -i "s@User=ReplaceMe@User=$UNAME@g" /etc/systemd/system/$APPSYSTEMD || { echo -e $RED'Modifying USER in SYSTEMD file failed.'$ENDCOLOR; exit 1; }
85
sudo sed -i "s@Group=ReplaceMe@Group=$UGROUP@g" /etc/systemd/system/$APPSYSTEMD || { echo -e $RED'Modifying GROUP in SYSTEMD file failed.'$ENDCOLOR; exit 1; }
96

107
sudo sed -i "s@User=ReplaceMe@User=$UNAME@g" /etc/systemd/system/$APPSYSTEMD2 || { echo -e $RED'Modifying USER in SYSTEMD2 file failed.'$ENDCOLOR; exit 1; }
118
sudo sed -i "s@Group=ReplaceMe@Group=$UGROUP@g" /etc/systemd/system/$APPSYSTEMD2 || { echo -e $RED'Modifying GROUP in SYSTEMD2 file failed.'$ENDCOLOR; exit 1; }
129

13-
1410
sudo systemctl daemon-reload
1511
sudo systemctl enable $APPSYSTEMD

deluged/deluged-uninstaller.sh

-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
#!/bin/bash
2-
# shellcheck disable=SC1090
32
# Script Name: AtoMiC Deluge Uninstaller
4-
# Author: TommyE123
5-
# Publisher: http://www.htpcBeginner.com
6-
# License: MIT License (refer to README.md for more details)
73

8-
source "$SCRIPTPATH/inc/app-setup-check.sh"
94
source "$SCRIPTPATH/inc/commons.sh"
105
source "$SCRIPTPATH/inc/header.sh"
116
echo -e "${GREEN}AtoMiC $APPTITLE Uninstaller Script$ENDCOLOR"

deluged/deluged-update.sh

-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
#!/bin/bash
2-
# shellcheck disable=SC1090
32
# Script Name: AtoMiC Deluge Updater
4-
# Author: TommyE123
5-
# Publisher: http://www.htpcBeginner.com
6-
# License: MIT License (refer to README.md for more details)
73

8-
source "$SCRIPTPATH/inc/app-setup-check.sh"
94
source "$SCRIPTPATH/inc/commons.sh"
105
source "$SCRIPTPATH/inc/header.sh"
116
echo -e "${GREEN}AtoMiC $APPTITLE Update Script$ENDCOLOR"

emby-server/emby-server-constants.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# shellcheck disable=SC2034
2+
33
APPNAME='emby-server'
44
APPSHORTNAME='emby'
55
APPPATH='/var/lib/emby-server'

emby-server/emby-server-installer.sh

-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
#!/bin/bash
2-
# shellcheck disable=SC1090
32
# Script Name: AtoMiC Emby Installer
4-
# Author: TommyE123
5-
# Publisher: http://www.htpcBeginner.com
6-
# License: MIT License (refer to README.md for more details)
73

8-
source "$SCRIPTPATH/inc/app-setup-check.sh"
94
source "$SCRIPTPATH/inc/commons.sh"
105
source "$SCRIPTPATH/inc/header.sh"
116
echo -e "${GREEN}AtoMiC $APPTITLE Installer Script$ENDCOLOR"

emby-server/emby-server-menu.sh

-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
#!/bin/bash
2-
# shellcheck disable=SC1090
32
# Script Name: AtoMiC Emby Menu
4-
# Author: TommyE123
5-
# Publisher: http://www.htpcBeginner.com
6-
# License: MIT License (refer to README.md for more details)
73

8-
source "$SCRIPTPATH/inc/app-setup-check.sh"
94
SUBCHOICE=$(whiptail --title "AtoMiC Toolkit - Manage Emby" \
105
--menu "What would you like to do?" --backtitle "$BACKTITLE" \
116
--fb --cancel-button "Exit" $LINES $COLUMNS "$NETLINES" \

emby-server/emby-server-repository-configurator.sh

-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
#!/bin/bash
2-
# shellcheck disable=SC2034
3-
# shellcheck disable=SC1090
42
# Script Name: AtoMiC Emby Repository Config Script
5-
# Author: TommyE123
6-
# Publisher: http://www.htpcBeginner.com
7-
# License: MIT License (refer to README.md for more details)
83

94
ARCH=$(uname -m)
105
ARCHSHORT=${ARCH:0:3}

emby-server/emby-server-settings-configurator.sh

-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
#!/bin/bash
22
# Script Name: AtoMiC Emby Settings update
3-
# Author: TommyE123
4-
# Publisher: http://www.htpcbeginner.com
53

6-
# DO NOT EDIT ANYTHING UNLESS YOU KNOW WHAT YOU ARE DOING.
74
echo
85
echo -e "${YELLOW}--->Updating Settings file...$ENDCOLOR"
96

emby-server/emby-server-uninstaller.sh

-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
#!/bin/bash
2-
# shellcheck disable=SC1090
32
# Script Name: AtoMiC Emby Uninstaller
4-
# Author: TommyE123
5-
# Publisher: http://www.htpcBeginner.com
6-
# License: MIT License (refer to README.md for more details)
73

8-
# DO NOT EDIT ANYTHING UNLESS YOU KNOW WHAT YOU ARE DOING.
9-
10-
source "$SCRIPTPATH/inc/app-setup-check.sh"
114
source "$SCRIPTPATH/inc/commons.sh"
125
source "$SCRIPTPATH/inc/header.sh"
136
echo -e "${GREEN}AtoMiC $APPTITLE Uninstaller Script$ENDCOLOR"

0 commit comments

Comments
 (0)