aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-light/cmake/Modules
diff options
context:
space:
mode:
authorJordan Augé <jordan.auge+fdio@cisco.com>2019-10-25 12:46:38 +0000
committerGerrit Code Review <gerrit@fd.io>2019-10-25 12:46:38 +0000
commit12439a0131fa2c10d52a190fbb44ca54d0d3dc6e (patch)
treef57c07b9cf80a4faa803f432ed97fbb0b4c9adb7 /hicn-light/cmake/Modules
parent8103b2103a1405b0c2344abc956e10535f7012b3 (diff)
parentbaaeb1af53ab4c64b31786bddfd7573445f21342 (diff)
Merge "[HICN-358] Enable systemctl service after package installation."
Diffstat (limited to 'hicn-light/cmake/Modules')
-rw-r--r--hicn-light/cmake/Modules/Packaging.cmake17
1 files changed, 16 insertions, 1 deletions
diff --git a/hicn-light/cmake/Modules/Packaging.cmake b/hicn-light/cmake/Modules/Packaging.cmake
index 006261b03..2b9f4a7b9 100644
--- a/hicn-light/cmake/Modules/Packaging.cmake
+++ b/hicn-light/cmake/Modules/Packaging.cmake
@@ -25,7 +25,22 @@ set(${HICN_LIGHT}_DEB_DEPENDENCIES
CACHE STRING "Dependencies for deb/rpm package."
)
+set(${HICN_LIGHT}_DEB_PACKAGE_CONTROL_EXTRA
+ "${CMAKE_CURRENT_SOURCE_DIR}/config/postinst;${CMAKE_CURRENT_SOURCE_DIR}/config/prerm"
+ CACHE STRING "Control scripts conffiles, postinst, postrm, prerm."
+)
+
set(${HICN_LIGHT}_RPM_DEPENDENCIES
"lib${LIBHICN} >= stable_version, libparc >= 1.0"
CACHE STRING "Dependencies for deb/rpm package."
-) \ No newline at end of file
+)
+
+set(${HICN_LIGHT}_RPM_POST_INSTALL_SCRIPT_FILE
+ "${CMAKE_CURRENT_SOURCE_DIR}/config/post"
+ CACHE STRING "Install script that will be copied in the %post section"
+)
+
+set(${HICN_LIGHT}_RPM_PRE_UNINSTALL_SCRIPT_FILE
+ "${CMAKE_CURRENT_SOURCE_DIR}/config/preun"
+ CACHE STRING "Install script that will be copied in the %post section"
+)