From 0b4e3ed390b203ea48107ecd3011a5ae0f0a7668 Mon Sep 17 00:00:00 2001
From: Sahan Yılmaz <sahan@chrona.org.tr>
Date: Sun, 23 Feb 2025 13:16:00 +0300
Subject: first commit

---
 debian/romtal-sistem-dondurma/DEBIAN/conffiles |  2 ++
 debian/romtal-sistem-dondurma/DEBIAN/control   | 19 +++++++++++++++++++
 debian/romtal-sistem-dondurma/DEBIAN/md5sums   |  9 +++++++++
 debian/romtal-sistem-dondurma/DEBIAN/postinst  | 13 +++++++++++++
 debian/romtal-sistem-dondurma/DEBIAN/postrm    | 14 ++++++++++++++
 debian/romtal-sistem-dondurma/DEBIAN/triggers  |  2 ++
 6 files changed, 59 insertions(+)
 create mode 100644 debian/romtal-sistem-dondurma/DEBIAN/conffiles
 create mode 100644 debian/romtal-sistem-dondurma/DEBIAN/control
 create mode 100644 debian/romtal-sistem-dondurma/DEBIAN/md5sums
 create mode 100755 debian/romtal-sistem-dondurma/DEBIAN/postinst
 create mode 100755 debian/romtal-sistem-dondurma/DEBIAN/postrm
 create mode 100644 debian/romtal-sistem-dondurma/DEBIAN/triggers

(limited to 'debian/romtal-sistem-dondurma/DEBIAN')

diff --git a/debian/romtal-sistem-dondurma/DEBIAN/conffiles b/debian/romtal-sistem-dondurma/DEBIAN/conffiles
new file mode 100644
index 0000000..6423e32
--- /dev/null
+++ b/debian/romtal-sistem-dondurma/DEBIAN/conffiles
@@ -0,0 +1,2 @@
+/etc/overlayroot.conf
+/etc/update-motd.d/97-overlayroot
diff --git a/debian/romtal-sistem-dondurma/DEBIAN/control b/debian/romtal-sistem-dondurma/DEBIAN/control
new file mode 100644
index 0000000..092453e
--- /dev/null
+++ b/debian/romtal-sistem-dondurma/DEBIAN/control
@@ -0,0 +1,19 @@
+Package: romtal-sistem-dondurma
+Version: 1.0.0-pardus
+Architecture: all
+Maintainer: Şahan Yılmaz <sahan@chrona.org.tr>
+Installed-Size: 68
+Depends: cryptsetup, cryptsetup-bin, initramfs-tools, python3
+Suggests: haveged
+Section: admin
+Priority: optional
+Homepage: https://www.launchpad.net/romtal-sistem-dondurma
+Description: use an overlayfs on top of a read-only root filesystem
+ This package adds functionality to an initramfs built by initramfs-tools.
+ When installed and configured, the initramfs will mount an overlayfs
+ filesystem on top of a read-only root volume.
+ .
+ The changes can be written to a in-memory temporary filesystem, a
+ filesystem on an existing block device, or a dmcrypt encrypted block
+ device.
+ R.O.M.T.A.L DeepFreeze, Linux sistemlerde sistem yapılandırmasının kalıcı olarak değişmesini 		 önlemek ve geçici çalıştırma ortamları oluşturmak için tasarlanmış bir güvenlik ve kararlılık aracıdır. Bu paket, sistem dosyalarının veya yapılandırmaların yapılan değişikliklerle kalıcı hale gelmesini engellemek amacıyla “overlay” tekniğini kullanır. İşleyiş biçimi, sistemin gerçek dosya sistemi üzerine geçici bir katman (genellikle tmpfs tabanlı) ekleyerek, yapılan değişikliklerin sistem yeniden başlatıldığında otomatik olarak sıfırlanmasını sağlar. https://rasimoneltml.meb.k12.tr/
diff --git a/debian/romtal-sistem-dondurma/DEBIAN/md5sums b/debian/romtal-sistem-dondurma/DEBIAN/md5sums
new file mode 100644
index 0000000..6773209
--- /dev/null
+++ b/debian/romtal-sistem-dondurma/DEBIAN/md5sums
@@ -0,0 +1,9 @@
+0f9f9c2689c58c758bc4b576c91d07a6  bin/romtalsd
+78db8ba50efd0e523fe4b06083b67dcd  usr/sbin/overlayroot-chroot
+213f7cda911239a108c2c9eb87c9cc8d  usr/share/doc/romtal-sistem-dondurma/README
+829285930029ae87f0be17ff6ad6b765  usr/share/doc/romtal-sistem-dondurma/changelog.Debian.gz
+d83c42e522a362610b374c35ca056cf8  usr/share/doc/romtal-sistem-dondurma/copyright
+94661160a717bcc5639fef40546a7e14  usr/share/initramfs-tools/conf-hooks.d/overlayroot
+349725f825813b1ca87b785ce13c09ee  usr/share/initramfs-tools/hooks/overlayroot
+1ed8aabdf65f9f565fbb26a193a25826  usr/share/initramfs-tools/scripts/init-bottom/overlayroot
+e80e667ae504860007cd71006f05e999  usr/share/man/man8/overlayroot-chroot.8.gz
diff --git a/debian/romtal-sistem-dondurma/DEBIAN/postinst b/debian/romtal-sistem-dondurma/DEBIAN/postinst
new file mode 100755
index 0000000..ee0cf99
--- /dev/null
+++ b/debian/romtal-sistem-dondurma/DEBIAN/postinst
@@ -0,0 +1,13 @@
+#!/bin/sh
+set -e
+
+case "$1" in
+	configure)
+		dpkg-trigger update-initramfs;;
+	*) exit 0;;
+esac
+
+
+exit 0
+
+# vi: ts=4 noexpandtab
diff --git a/debian/romtal-sistem-dondurma/DEBIAN/postrm b/debian/romtal-sistem-dondurma/DEBIAN/postrm
new file mode 100755
index 0000000..6026a42
--- /dev/null
+++ b/debian/romtal-sistem-dondurma/DEBIAN/postrm
@@ -0,0 +1,14 @@
+#!/bin/sh
+set -e
+
+case "$1" in
+	remove|purge)
+		dpkg-trigger update-initramfs;;
+	*) exit 0;;
+esac
+
+
+exit 0
+
+# vi: ts=4 noexpandtab
+
diff --git a/debian/romtal-sistem-dondurma/DEBIAN/triggers b/debian/romtal-sistem-dondurma/DEBIAN/triggers
new file mode 100644
index 0000000..7c98037
--- /dev/null
+++ b/debian/romtal-sistem-dondurma/DEBIAN/triggers
@@ -0,0 +1,2 @@
+# Triggers added by dh_installinitramfs/13.6ubuntu1
+activate-noawait update-initramfs
-- 
cgit v1.2.3