2024-11-21 18:54:20 -06:00
|
|
|
package zoopb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
|
|
|
"os/exec"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"go.wit.com/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
// getPackageList returns the list of installed packages based on the distro
|
|
|
|
func getPackageList(distro string) (map[string]string, error) {
|
2024-12-02 10:44:03 -06:00
|
|
|
log.Info("zoopb: have not done macos yet, skipping okay")
|
2024-11-21 18:54:20 -06:00
|
|
|
return nil, nil
|
|
|
|
}
|