diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-12-03 20:15:25 -0600 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-12-03 20:15:25 -0600 |
commit | e816651b1653ef168af2fcae483abc79e427a70d (patch) | |
tree | ea2c5f13595d8fa997f7ea1847d16856195b09ca /package/base-files | |
parent | 066ece401c575c45ef8f05fdf6f28e904215f200 (diff) |
allow passwords with special characters, like #. reported by Martin T.
Diffstat (limited to 'package/base-files')
-rw-r--r-- | package/base-files/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 0ca11d180..8cc414472 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -6,7 +6,7 @@ include $(ADK_TOPDIR)/mk/rootfs.mk PKG_NAME:= base-files PKG_VERSION:= 1.1 -PKG_RELEASE:= 5 +PKG_RELEASE:= 6 PKG_SECTION:= base/apps PKG_DESCR:= basic files and scripts @@ -78,8 +78,8 @@ endif echo "::1 localhost" >> $(IDIR_BASE_FILES)/etc/hosts echo "127.0.1.1 $(ADK_RUNTIME_HOSTNAME)" >> $(IDIR_BASE_FILES)/etc/hosts test -z $(ADK_RUNTIME_PASSWORD) || \ - $(SED) 's,\*NP\*,'"$$($(STAGING_HOST_DIR)/usr/bin/mkcrypt \ - ${ADK_RUNTIME_PASSWORD}),g" $(IDIR_BASE_FILES)/etc/shadow + passwd=$$($(STAGING_HOST_DIR)/usr/bin/mkcrypt '${ADK_RUNTIME_PASSWORD}'); \ + $(SED) "s,\*NP\*,$$passwd,g" $(IDIR_BASE_FILES)/etc/shadow echo $(ADK_RUNTIME_TMPFS_SIZE) > $(IDIR_BASE_FILES)/etc/tmpfs ifeq ($(ADK_TARGET_WITH_ROOT_RW),y) echo 'export IPKGTMPDIR=/root/.ipkg' >> $(IDIR_BASE_FILES)/etc/profile |