diff options
author | Karel Kočí <cynerd@email.cz> | 2020-10-19 14:37:35 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2020-10-19 14:37:35 +0200 |
commit | cb1b57931e787facba5335cc3ca85613089a91cf (patch) | |
tree | 34d0f7232599dcbc7cd32970de483953893597e6 /mount-data | |
parent | 7e1cb8d0712ba03054fddad121a717cf848be273 (diff) | |
download | openwrt-personal-pkgs-cb1b57931e787facba5335cc3ca85613089a91cf.tar.gz openwrt-personal-pkgs-cb1b57931e787facba5335cc3ca85613089a91cf.tar.bz2 openwrt-personal-pkgs-cb1b57931e787facba5335cc3ca85613089a91cf.zip |
mount-data: remove as I no longer have right now NAS
Diffstat (limited to 'mount-data')
-rw-r--r-- | mount-data/Makefile | 36 | ||||
-rwxr-xr-x | mount-data/files/init | 24 |
2 files changed, 0 insertions, 60 deletions
diff --git a/mount-data/Makefile b/mount-data/Makefile deleted file mode 100644 index 3af25b5..0000000 --- a/mount-data/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# -## Copyright (C) 2020 Karel Kočí -# -## This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# # -# -include $(TOPDIR)/rules.mk - -PKG_NAME:=mount-data -PKG_VERSION:=1.0.0 -PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz> -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) - -include $(INCLUDE_DIR)/package.mk - -define Package/mount-data - TITLE:=Mount filesystem to /data directory -endef - -define Package/mount-data/install - $(INSTALL_DIR) $(1)/etc/init.d - $(INSTALL_DATA) ./files/init $(1)/etc/init.d/data -endef - -Build/Compile:=: - -define Package/mount-data/postinst -[ -n "$$IPKG_INSTROOT" ] || /etc/init.d/data enable -endef - -define Package/mount-data/prerm -[ -n "$$IPKG_INSTROOT" ] || /etc/init.d/data disable -endef - -$(eval $(call BuildPackage,mount-data)) diff --git a/mount-data/files/init b/mount-data/files/init deleted file mode 100755 index d1362e2..0000000 --- a/mount-data/files/init +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh /etc/rc.common - -START=36 -STOP=90 - -status() { - findmnt >/dev/null /data -} - -start() { - status || mount -o subvol=@data UUID=7dc606e7-39e0-4320-9ff6-83a10f163e54 /data -} - -stop() { - umount -fl /data -} - -restart() { - : -} - -reload() { - : -} |