go.mondoo.com/cnquery@v0.0.0-20231005093811-59568235f6ea/providers/os/resources/services/testdata/ubuntu1404.toml (about) 1 [commands."ls -1 /etc/init.d/"] 2 stdout = """ 3 cron 4 rc 5 ssh 6 """ 7 8 [commands."find -L /etc/rc*.d -name 'S*'"] 9 stdout = """ 10 """ 11 12 [commands."/sbin/initctl list"] 13 stdout = """ 14 mountall-net stop/waiting 15 rc stop/waiting 16 rsyslog start/running, process 950 17 upstart-udev-bridge start/running, process 374 18 systemd-logind start/running, process 926 19 upstart-socket-bridge start/running, process 560 20 network-interface-security (network-interface/eth0) start/running 21 """ 22 23 [commands."service ssh status"] 24 stdout = "ssh start/running, process 27259" 25 26 [commands."service rc status"] 27 stdout = "rc stop/waiting" 28 29 [commands."service rsyslog status"] 30 stdout = "rsyslog start/running, process 950" 31 32 [commands."uname -r"] 33 stdout = "3.13.0-170-generic" 34 35 [commands."uname -s"] 36 stdout = "Linux" 37 38 [commands."uname -m"] 39 stdout = "x86_64" 40 41 [files."/etc/os-release"] 42 content = """ 43 NAME="Ubuntu" 44 VERSION="14.04.6 LTS, Trusty Tahr" 45 ID=ubuntu 46 ID_LIKE=debian 47 PRETTY_NAME="Ubuntu 14.04.6 LTS" 48 VERSION_ID="14.04" 49 HOME_URL="http://www.ubuntu.com/" 50 SUPPORT_URL="http://help.ubuntu.com/" 51 BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/" 52 """