From c0ebe78089121c0ad23efb0af32c435bee543a3c Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Sun, 18 Apr 2021 15:09:51 +0200 Subject: Initial commit --- src/Module/AptModule.php | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/Module/AptModule.php (limited to 'src/Module/AptModule.php') diff --git a/src/Module/AptModule.php b/src/Module/AptModule.php new file mode 100644 index 0000000..ff4cb95 --- /dev/null +++ b/src/Module/AptModule.php @@ -0,0 +1,48 @@ +enablePTY(); + $ssh->exec("which $this->package"); + + if ($this->state === State::PRESENT) { + $state = ! empty($ssh->read()); + } + else if ($this->state === State::ABSENT) { + $state = empty($ssh->read()); + } + + $ssh->disablePTY(); + + return $state; + } + + public function getCommands(): array + { + if ($this->state === State::PRESENT) { + return [ + "sudo apt install -y $this->package", + ]; + } + else if ($this->state === State::ABSENT) { + return [ + "sudo apt remove -y $this->package", + ]; + } + + return []; + } +} -- cgit v1.2.3