-
Notifications
You must be signed in to change notification settings - Fork 16
falter-berlin-owmsh: Install cronjob #476
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
packages/falter-common/Makefile
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new package needs to be added, otherwise it won't work.
define Package/falter-berlin-owmsh/postinst | ||
#!/bin/sh | ||
if [ -z $${IPKG_INSTROOT} ] ; then | ||
( . /etc/uci-defaults/owm ) && rm -f /etc/uci-defaults/owm | ||
rm -f /tmp/luci-indexcache | ||
fi | ||
endef | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand how this would install the cronjob. Can you please explain what it does?!?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the sharp review! You're right. I forgot to add the file, I'm sorry.
I've added the remaining thing in the updated version of this MR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we really need to delete the luci-indexcache? from my understanding it is totally unrelated.
e99d8fa
to
163dafa
Compare
Install cronjob for the owm.sh script. Follow up of 36f3535
163dafa
to
2f2de3f
Compare
Pipeline fails due to reaching the unathed pull limit of the container registry. |
@@ -33,7 +33,7 @@ define Package/falter-common | |||
TITLE:=Falter common files | |||
EXTRA_DEPENDS:=uci, libuci-lua, lua, ip, ethtool, iwinfo, libiwinfo-lua, | |||
EXTRA_DEPENDS+= uhttpd, uhttpd-mod-ubus, luci, luci-app-package-manager, luci-i18n-base-de, luci-i18n-package-manager-de, luci-proto-ppp, luci-theme-bootstrap, | |||
EXTRA_DEPENDS+= luci-mod-falter, luci-i18n-falter-de, luci-app-falter-owm, luci-app-falter-owm-ant, luci-app-falter-owm-cmd, luci-app-falter-owm-gui, | |||
EXTRA_DEPENDS+= luci-mod-falter, luci-i18n-falter-de, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
still missing the new package as dependency
Followup of #473