13 lines
311 B
Bash
13 lines
311 B
Bash
#! /bin/bash
|
|
# this script is meant to be run by ansible
|
|
|
|
source functions.sh
|
|
# check that alias has been tried
|
|
addHeader
|
|
fileBiggerThan /etc/motd 1
|
|
fileMustContain /etc/passwd "epsi"
|
|
fileMustContain /etc/shadow "epsi"
|
|
fileMustExist /srv/inventaire.txt
|
|
fileMustContain ~root/.bash_history vi
|
|
pkgInstalled sudo
|