2021-01-16 07:15:54 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
2021-05-21 06:52:40 +00:00
|
|
|
# Copyright (C) 2020-2021 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
2021-01-16 07:15:54 +00:00
|
|
|
# Released under GPL 3. See LICENSE for the full terms.
|
|
|
|
|
|
|
|
{
|
2021-05-21 06:52:40 +00:00
|
|
|
START=99
|
2021-01-16 07:15:54 +00:00
|
|
|
STOP=10
|
|
|
|
USE_PROCD=1
|
|
|
|
}
|
|
|
|
|
|
|
|
start_service()
|
|
|
|
{
|
|
|
|
if [ -f /etc/backup/installed_packages.txt ]; then
|
2022-02-18 07:29:08 +00:00
|
|
|
if [ "$(opkg -V0 update 2>&1)" = "" ]; then
|
2021-01-16 07:15:54 +00:00
|
|
|
grep "\toverlay" /etc/backup/installed_packages.txt | cut -f1 | xargs -r opkg -V0 install
|
|
|
|
rm /etc/backup/installed_packages.txt
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|