mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
rubocop is nuts
This commit is contained in:
parent
94a286929f
commit
6cd801fbb9
2 changed files with 2 additions and 2 deletions
|
@ -188,7 +188,6 @@ class SrcMstr < ServiceManager
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
# #rubocop:disable Style/TrailingComma
|
|
||||||
def enabled_rc_tcpip?
|
def enabled_rc_tcpip?
|
||||||
if inspec.command(
|
if inspec.command(
|
||||||
"grep -v ^# /etc/rc.tcpip | grep 'start ' | grep -Eq '(/{0,1}| )#{@name} '"
|
"grep -v ^# /etc/rc.tcpip | grep 'start ' | grep -Eq '(/{0,1}| )#{@name} '"
|
||||||
|
|
|
@ -292,9 +292,10 @@ class AixUser < UnixUser
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# rubocop:disable Style/TrailingComma
|
||||||
def credentials(username)
|
def credentials(username)
|
||||||
cmd = inspec.command(
|
cmd = inspec.command(
|
||||||
"lssec -c -f /etc/security/user -s #{username} -a minage -a maxage -a pwdwarntime",
|
"lssec -c -f /etc/security/user -s #{username} -a minage -a maxage -a pwdwarntime"
|
||||||
)
|
)
|
||||||
return nil if cmd.exit_status != 0
|
return nil if cmd.exit_status != 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue