Skip to content

Commit fe1119b

Browse files
Merge pull request #643 from nancysangani/fix/system-settings-screensaver-timeout-cis-lvl1-lvl2-odv
fix(system_settings_screensaver_timeout_enforce): update CIS lvl1/lvl2 ODV from 1200 to 900
2 parents 0336fe5 + 6891200 commit fe1119b

File tree

9 files changed

+566
-4
lines changed

9 files changed

+566
-4
lines changed

.github/Dockerfile

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
FROM alpine:latest
2+
3+
# Install required packages
4+
RUN apk update && apk add --no-cache \
5+
python3 \
6+
ruby \
7+
git \
8+
py3-pip \
9+
ruby-dev \
10+
build-base \
11+
git
12+
13+
RUN apk add --no-cache --virtual .build-deps \
14+
musl-dev \
15+
linux-headers \
16+
g++ \
17+
gcc \
18+
zlib-dev \
19+
make \
20+
python3-dev \
21+
jpeg-dev \
22+
freetype-dev \
23+
libpng-dev \
24+
openblas-dev
25+
26+
# Set working directory
27+
WORKDIR /mscp
28+
29+
# Copy MSCP code
30+
RUN git clone --single-branch -b dev_2.0 https://github.com/usnistgov/macos_security /mscp
31+
32+
# Install Python dependencies
33+
RUN pip install --break-system-packages --no-cache-dir -r requirements.txt
34+
35+
# Install Ruby dependencies
36+
#COPY Gemfile ./
37+
RUN gem install bundler && bundle install
38+
RUN bundle add base64
39+
40+
# Clean up build dependencies
41+
RUN apk del .build-deps
42+
43+
# Run a shell when container starts
44+
CMD ["sh"]

.github/cspell/cspell.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"version": "0.2",
3+
"language": "en",
4+
"allowCompoundWords": true,
5+
"dictionaries": ["project-words", "project-names"],
6+
"words": [],
7+
"ignoreWords": [],
8+
"ignorePaths": [
9+
"**/build/**",
10+
"**/scripts/**",
11+
"**/*.css",
12+
"**/config/locales/**"
13+
],
14+
"dictionaryDefinitions":[
15+
{
16+
"name": "project-words",
17+
"path": "./project-words.txt",
18+
"addWords": true
19+
},
20+
{
21+
"name": "project-names",
22+
"path": "./project-names.txt",
23+
"addWords": true
24+
}
25+
],
26+
}

.github/cspell/project-names.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Brodjieski
2+
CNSS
3+
Colvin
4+
DISA
5+
Ekkehard
6+
Elyse
7+
Escobar
8+
Gapinski
9+
Gendler
10+
Glemza
11+
Golbig
12+
Heiserman
13+
Jamf
14+
Kegerreis
15+
LANL
16+
Mahlman
17+
Piñeyro
18+
Stamerjohann
19+
Jordy
20+
Witteman
21+
Zentral

0 commit comments

Comments
 (0)