2025-02-05 16:25:01 +01:00
|
|
|
#include "process/exec_opkg_command.h"
|
|
|
|
|
|
|
|
|
|
|
|
ExecOpkgCommand::ExecOpkgCommand(QString const &command,
|
|
|
|
Worker *worker,
|
2025-02-05 16:30:48 +01:00
|
|
|
bool noaction,
|
2025-02-05 16:25:01 +01:00
|
|
|
int start_timeout,
|
|
|
|
int finish_timeout)
|
|
|
|
: UpdateCommand(command, worker, start_timeout, finish_timeout)
|
|
|
|
, m_noaction(m_noaction) {
|
|
|
|
}
|