Skip to content
This repository was archived by the owner on Sep 18, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,16 @@ AM_CFLAGS += -fprofile-arcs -ftest-coverage
LDADD += -lgcov
endif

sbin_PROGRAMS = update_engine
libexec_PROGRAMS = update_engine
bin_PROGRAMS = update_engine_client
if ENABLE_DELTA_GENERATOR
bin_PROGRAMS += delta_generator
endif

sbin_SCRIPTS = coreos-postinst \
coreos-setgoodroot \
systemd/update_engine_stub
coreos-setgoodroot

libexec_SCRIPTS= systemd/update_engine_stub

noinst_LIBRARIES = libupdate_engine.a

Expand Down
2 changes: 1 addition & 1 deletion systemd/update-engine-stub.service
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ConditionPathExists=/usr/.noupdate

[Service]
Type=oneshot
ExecStart=/usr/sbin/update_engine_stub
ExecStart=/usr/libexec/update_engine_stub

[Install]
WantedBy=multi-user.target
2 changes: 1 addition & 1 deletion systemd/update-engine.service
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ConditionPathExists=!/usr/.noupdate
[Service]
Type=dbus
BusName=com.coreos.update1
ExecStart=/usr/sbin/update_engine -foreground -logtostderr
ExecStart=/usr/libexec/update_engine -foreground -logtostderr
BlockIOWeight=100
Restart=always
RestartSec=30
Expand Down