1 // MsgInfoReq: collect information about the remote host
3 // Copyright (C) 2021 Simon Ruderich
5 // This program is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program. If not, see <http://www.gnu.org/licenses/>.
24 "ruderich.org/simon/safcm"
25 "ruderich.org/simon/safcm/cmd/safcm-remote/log"
26 "ruderich.org/simon/safcm/cmd/safcm-remote/run"
31 resp safcm.MsgInfoResp
34 logger *log.PrefixLogger
37 const logPrefix = "info remote:"
39 func Handle(req safcm.MsgInfoReq,
40 runner run.Runner, fun log.LogFunc) safcm.MsgInfoResp {
44 logger: log.NewLogger(logPrefix, fun),
46 i.cmd = run.NewCmd(runner, i.logger)
50 i.resp.Error = fmt.Sprintf("%s %v", logPrefix, err)
55 func (i *Info) handle() error {
56 i.resp.Goos = runtime.GOOS
57 i.resp.Goarch = runtime.GOARCH
59 for _, x := range i.req.DetectGroups {
60 stdout, _, err := i.cmd.Run("detect group",
65 i.resp.Output = append(i.resp.Output, string(stdout))