Update aq_scheduler.c

pull/276/head
sfeakes 2024-04-16 08:15:26 -05:00 committed by GitHub
parent 921980cac6
commit 218d427b0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -38,7 +38,11 @@ Example /etc/cron.d/aqualinkd
*/
bool remount_root_ro(bool readonly) {
// NSF Check if config is RO_ROOT set
#ifdev AQ_CONTAINER
// In container this is pointless
return false;
#endif
if (readonly) {
LOG(SCHD_LOG,LOG_INFO, "reMounting root RO\n");