-
Notifications
You must be signed in to change notification settings - Fork 0
/
script-que-se-ejecuta-al-apagar-el-equipo-en-systemd.html
193 lines (150 loc) · 8.42 KB
/
script-que-se-ejecuta-al-apagar-el-equipo-en-systemd.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="" />
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://agutierrezrodriguez.github.io/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="https://agutierrezrodriguez.github.io/theme/pygments/github.min.css">
<link rel="stylesheet" type="text/css" href="https://agutierrezrodriguez.github.io/theme/font-awesome/css/font-awesome.min.css">
<link href="https://agutierrezrodriguez.github.io/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Antonio Gutiérrez Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-101620037-1', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<meta name="author" content="Antonio Gutiérrez" />
<meta name="description" content="Hay algunas veces que necesitamos ejecutar un script al apagar el sistema, como por ejemplo una tarea de limpieza, un chequeo, una actualización, etc. En sistemas con SysVinit se ponía el script en el directorio rc0.d (apagado del sistema) y a funcionar. Con Systemd hay que realizar un archivo …" />
<meta name="keywords" content="Linux, Systemd">
<meta property="og:site_name" content="Antonio Gutiérrez"/>
<meta property="og:title" content="Script que se ejecuta al apagar el equipo en Systemd"/>
<meta property="og:description" content="Hay algunas veces que necesitamos ejecutar un script al apagar el sistema, como por ejemplo una tarea de limpieza, un chequeo, una actualización, etc. En sistemas con SysVinit se ponía el script en el directorio rc0.d (apagado del sistema) y a funcionar. Con Systemd hay que realizar un archivo …"/>
<meta property="og:locale" content="es_ES"/>
<meta property="og:url" content="https://agutierrezrodriguez.github.io/script-que-se-ejecuta-al-apagar-el-equipo-en-systemd.html"/>
<meta property="og:type" content="article"/>
<meta property="article:published_time" content="2017-10-07 17:30:00+02:00"/>
<meta property="article:modified_time" content=""/>
<meta property="article:author" content="https://agutierrezrodriguez.github.io/author/antonio-gutierrez.html">
<meta property="article:section" content="Linux"/>
<meta property="article:tag" content="Linux"/>
<meta property="article:tag" content="Systemd"/>
<meta property="og:image" content="/images/agutierrez.jpg">
<title>Antonio Gutiérrez – Script que se ejecuta al apagar el equipo en Systemd</title>
</head>
<body>
<aside>
<div>
<a href="https://agutierrezrodriguez.github.io">
<img src="/images/agutierrez.jpg" alt="" title="">
</a>
<h1><a href="https://agutierrezrodriguez.github.io"></a></h1>
<p>SysAdmin / DevOps / Python Backend</p>
<nav>
<ul class="list">
<li><a href="https://agutierrezrodriguez.github.io/category/linux.html">Linux</a></li>
<li><a href="https://agutierrezrodriguez.github.io/pages/sobre-mi.html">Sobre mí</a></li>
</ul>
</nav>
<ul class="social">
<li><a class="sc-rss" href="/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li>
<li><a class="sc-linkedin" href="https://www.linkedin.com/in/antonio-gutierrez-rodriguez/" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a class="sc-twitter" href="https://twitter.com/toniusco" target="_blank"><i class="fa fa-twitter"></i></a></li>
<li><a class="sc-github" href="https://github.com/agutierrezrodriguez/" target="_blank"><i class="fa fa-github"></i></a></li>
</ul>
</div>
</aside>
<main>
<article class="single">
<header>
<h1 id="script-que-se-ejecuta-al-apagar-el-equipo-en-systemd">Script que se ejecuta al apagar el equipo en Systemd</h1>
<p>
Publicado el sábado 07 de octubre de 2017 en <a href="https://agutierrezrodriguez.github.io/category/linux.html">Linux</a>
</p>
</header>
<div>
<p><img alt="Systemd image" src="https://agutierrezrodriguez.github.io/images/systemd.png"></p>
<p>Hay algunas veces que necesitamos ejecutar un script al apagar el sistema, como
por ejemplo una tarea de limpieza, un chequeo, una actualización, etc.</p>
<p>En sistemas con SysVinit se ponía el script en el directorio rc0.d (apagado
del sistema) y a funcionar. Con Systemd hay que realizar un archivo "unit"
para que lo entienda systemd y en dicho archivo poner el script a ejecutar.</p>
<p>Lo primero que hay que hacer es crear el archivo "unit" (configuración del
servicio) en un directorio de Systemd, yo uso /etc/systemd/system/, con el
contenido siguiente y con la extensión .service:</p>
<p>MiScriptDeApagado.service</p>
<div class="highlight"><pre><span></span><span class="k">[Unit]</span>
<span class="na">Description</span><span class="o">=</span><span class="s">"Mi script de apagado"</span>
<span class="na">Before</span><span class="o">=</span><span class="s">shutdown.target</span>
<span class="k">[Service]</span>
<span class="na">Type</span><span class="o">=</span><span class="s">oneshot</span>
<span class="na">RemainAfterExit</span><span class="o">=</span><span class="s">true</span>
<span class="na">ExecStart</span><span class="o">=</span><span class="s">/bin/true</span>
<span class="c1"># ExecStop=<Ruta del script a ejecutar o comando a ejecutar></span>
<span class="na">ExecStop</span><span class="o">=</span><span class="s">"date -Iseconds >> /var/log/apagado.log"</span>
<span class="k">[Install]</span>
<span class="na">WantedBy</span><span class="o">=</span><span class="s">multi-user.target</span>
</pre></div>
<p>Una vez guardado dicho archivo hay que aplicar los cambios en Systemd
reiniciando el demonio y activando el servicio de la siguiente forma</p>
<div class="highlight"><pre><span></span>systemctl daemon-reload
systemctl <span class="nb">enable</span> MiScriptDeApagado
systemctl start MiScriptDeApagado
</pre></div>
<p>Y con esto ya debería de funcionar. Actualmente lo tengo tal cual en un sistema
Debian Stretch - 9 funcionando.</p>
<p>Si tenéis cualquier duda podéis dejarme un comentario.</p>
<p>Un saludo.</p>
</div>
<div class="tag-cloud">
<p>
<a href="https://agutierrezrodriguez.github.io/tag/linux.html">Linux</a>
<a href="https://agutierrezrodriguez.github.io/tag/systemd.html">Systemd</a>
</p>
</div>
<div class="center social-share">
<p>¿Te gusta este artículo? ¡Compártelo con tus amigos!</p>
<div class="addthis_native_toolbox"></div>
<div class="addthis_sharing_toolbox"></div>
<div class="addthis_inline_share_toolbox"></div>
</div>
<div class="addthis_relatedposts_inline"></div>
<!-- Disqus -->
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'agutierrezrodriguez-github-io';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>
Por favor, habilita JavaScript para ver los comentarios.
</noscript>
<!-- End Disqus -->
</article>
<footer>
<p>© </p>
<p>Este sitio usa <a href="http://getpelican.com" target="_blank">Pelican</a> - tema <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> por <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a></p> </footer>
</main>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-598f3d1eafff98c0" async="async"></script>
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "Blog",
"name": " Antonio Gutiérrez ",
"url" : "https://agutierrezrodriguez.github.io",
"image": "/images/agutierrez.jpg",
"description": ""
}
</script>
</body>
</html>