about summary refs log tree commit diff
path: root/slides.tex
diff options
context:
space:
mode:
authorVincent Ambo <vincent@kivra.com>2016-01-21T15·21+0100
committerVincent Ambo <vincent@kivra.com>2016-01-21T15·21+0100
commitf368f12a90d66f971b97d08f8702204b67111a51 (patch)
treefa9b863119b8b124a7601747765757a59c1e0f7d /slides.tex
parent8e06fe4d927d17555acea81b141426464c1b58f4 (diff)
Minor corrections
Diffstat (limited to 'slides.tex')
-rw-r--r--slides.tex42
1 files changed, 21 insertions, 21 deletions
diff --git a/slides.tex b/slides.tex
index e18c9496cc..51706e5990 100644
--- a/slides.tex
+++ b/slides.tex
@@ -14,10 +14,10 @@
 \section{Introduction}
 
 \begin{frame}{What is an init system?}
-  An init system is the first process (PID 1) started in a Unix like system. It handles:
+  An init system is the first userspace process (PID 1) started in a UNIX-like system. It handles:
 
   \begin{itemize}
-  \item Starting system processes and services to prepare environment
+  \item Starting system processes and services to prepare the environment
   \item Adopting and ``reaping'' orphaned processes
   \end{itemize}
 \end{frame}
@@ -54,12 +54,12 @@
 
 \begin{frame}{Systemd - the basics}
   \begin{itemize}
-    \item No scripts are executed, only declarative units
-    \item Units have explicit dependencies
-    \item Processes are supervised
-    \item cgroups are utilised to apply resource limits
-    \item Service logs are managed and centrally queryable
-    \item Much more!
+  \item No scripts are executed, only declarative units
+  \item Units have explicit dependencies
+  \item Processes are supervised
+  \item cgroups are utilised to apply resource limits
+  \item Service logs are managed and centrally queryable
+  \item Much more!
   \end{itemize}
 \end{frame}
 
@@ -69,20 +69,20 @@
     \small
     \begin{columns}[T,onlytextwidth]
       \column{0.5\textwidth}
-        \begin{itemize}
-          \item systemd.service
-          \item systemd.target
-          \item systemd.timer
-          \item systemd.path
-          \item systemd.socket
-        \end{itemize}
+      \begin{itemize}
+      \item systemd.service
+      \item systemd.target
+      \item systemd.timer
+      \item systemd.path
+      \item systemd.socket
+      \end{itemize}
       \column{0.5\textwidth}
-        \begin{itemize}
-          \item systemd.device
-          \item systemd.mount
-          \item systemd.swap
-          \item systemd.slice
-        \end{itemize}
+      \begin{itemize}
+      \item systemd.device
+      \item systemd.mount
+      \item systemd.swap
+      \item systemd.slice
+      \end{itemize}
     \end{columns}
   \end{code}
 \end{frame}